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 39921fa80f2ef..b17ab9b77c134 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" /> ); };