Lee-W commented on code in PR #56760:
URL: https://github.com/apache/airflow/pull/56760#discussion_r2664422045


##########
airflow-core/src/airflow/ui/src/pages/TaskInstance/HITLResponse.tsx:
##########
@@ -47,6 +86,13 @@ export const HITLResponse = () => {
 
   return (
     <Box px={4}>
+      {taskInstance.try_number <= 1 ? undefined : (
+        <TaskTrySelect
+          onSelectTryNumber={onSelectTryNumber}
+          selectedTryNumber={tryNumber}
+          taskInstance={taskInstance}
+        />
+      )}
       <HITLResponseForm hitlDetail={hitlDetail} />

Review Comment:
   This is expected. The user will see the form with the data they previously 
provided, but the button will be disabled so that they know it's a past try. 
this is consistent with our current behavior



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to