This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 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 6fb2c61aa16 UI: Align boolean controls in Trigger Dag form (#70713)
6fb2c61aa16 is described below
commit 6fb2c61aa1646cfc05de4f4cc952dcc51cd6b181
Author: Shivam Rastogi <[email protected]>
AuthorDate: Sun Aug 2 22:26:24 2026 -0700
UI: Align boolean controls in Trigger Dag form (#70713)
* UI: Align boolean controls in Trigger Dag form
* Remove layout-specific FieldBool test
---
airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldBool.tsx | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldBool.tsx
b/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldBool.tsx
index 39921fa80f2..b17ab9b77c1 100644
--- a/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldBool.tsx
+++ b/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldBool.tsx
@@ -37,8 +37,10 @@ export const FieldBool = ({ name, namespace = "default" }:
FlexibleFormElementPr
checked={Boolean(param.value)}
disabled={disabled}
id={`element_${name}`}
+ justifyContent="flex-end"
name={`element_${name}`}
onCheckedChange={(event) => onCheck(event.checked)}
+ width="full"
/>
);
};