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 182c7f1194e Fix date range field alignment (#50086)
182c7f1194e is described below

commit 182c7f1194e6b62ae131314c5b445985de5c1dfd
Author: Guan Ming(Wesley) Chiu <[email protected]>
AuthorDate: Fri May 2 04:12:41 2025 +0800

    Fix date range field alignment (#50086)
---
 .../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>&nbsp;</Field.ErrorText>
                 </Field.Root>
               )}
             />

Reply via email to