This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 5318bd8a61c Fix `HITLResponseForm` display issue (#54188)
5318bd8a61c is described below
commit 5318bd8a61c80d4ebc69d25da8dab164e511e8c6
Author: Guan Ming(Wesley) Chiu <[email protected]>
AuthorDate: Thu Aug 7 04:19:58 2025 +0800
Fix `HITLResponseForm` display issue (#54188)
---
.../src/airflow/ui/src/pages/HITLTaskInstances/HITLResponseForm.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/airflow-core/src/airflow/ui/src/pages/HITLTaskInstances/HITLResponseForm.tsx
b/airflow-core/src/airflow/ui/src/pages/HITLTaskInstances/HITLResponseForm.tsx
index 2563d3ce721..d57508bd733 100644
---
a/airflow-core/src/airflow/ui/src/pages/HITLTaskInstances/HITLResponseForm.tsx
+++
b/airflow-core/src/airflow/ui/src/pages/HITLTaskInstances/HITLResponseForm.tsx
@@ -90,6 +90,7 @@ export const HITLResponseForm = ({ hitlDetail }:
HITLResponseFormProps) => {
defaultValue={[hitlDetail.subject]}
mb={4}
mt={4}
+ overflow="visible"
size="lg"
variant="enclosed"
>
@@ -113,7 +114,7 @@ export const HITLResponseForm = ({ hitlDetail }:
HITLResponseFormProps) => {
hitlDetail.options.map((option) => (
<Button
colorPalette={isHighlightOption(option, hitlDetail) ? "blue" :
"gray"}
- disabled={(hitlDetail.response_received ?? errors) ||
isSubmitting}
+ disabled={errors || isSubmitting ||
hitlDetail.response_received}
key={option}
onClick={() => handleSubmit(option)}
variant={isHighlightOption(option, hitlDetail) ? "solid" :
"subtle"}