This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 6c42950f543ef2e0e212552ef92781a55fa86e4b Author: Guan Ming(Wesley) Chiu <[email protected]> AuthorDate: Fri May 2 04:12:41 2025 +0800 Fix date range field alignment (#50086) (cherry picked from commit 182c7f1194e6b62ae131314c5b445985de5c1dfd) --- .../src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow-core/src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx b/airflow-core/src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx index b86aa824c9b..668f54a3d4c 100644 --- a/airflow-core/src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx +++ b/airflow-core/src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx @@ -175,6 +175,7 @@ const RunBackfillForm = ({ dag, onClose }: RunBackfillFormProps) => { <Field.Root invalid={Boolean(errors.date) || dataIntervalInvalid} required> <Field.Label>To</Field.Label> <DateTimeInput {...field} max={today} onBlur={resetDateError} size="sm" /> + <Field.ErrorText> </Field.ErrorText> </Field.Root> )} />
