This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new 9cc6298df4b [v3-3-test] UI: Align boolean controls in Trigger Dag form
(#70713) (#70963)
9cc6298df4b is described below
commit 9cc6298df4be6e2821d9b7fda8668b23953eb96e
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Aug 3 10:08:52 2026 +0300
[v3-3-test] UI: Align boolean controls in Trigger Dag form (#70713) (#70963)
* UI: Align boolean controls in Trigger Dag form
* Remove layout-specific FieldBool test
(cherry picked from commit 6fb2c61aa1646cfc05de4f4cc952dcc51cd6b181)
Co-authored-by: Shivam Rastogi <[email protected]>
---
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"
/>
);
};