bbovenzi commented on code in PR #49609:
URL: https://github.com/apache/airflow/pull/49609#discussion_r2056247387


##########
airflow-core/src/airflow/ui/src/components/DagActions/RunBackfillForm.tsx:
##########
@@ -114,11 +114,32 @@ const RunBackfillForm = ({ dag, onClose }: 
RunBackfillFormProps) => {
     total_entries: 0,
   };
 
+  const renderInlineMessage = () => {
+    if (!Boolean(values.from_date) || !Boolean(values.to_date)) {
+      return undefined;
+    }
+
+    if (isPendingDryRun) {
+      return <Skeleton height="20px" width="100px" />;
+    }
+
+    return affectedTasks.total_entries > 0 ? (
+      <Text color="fg.success" fontSize="sm">
+        {affectedTasks.total_entries} runs will be triggered

Review Comment:
   ```suggestion
           {pluralize("run", affectedTasks.total_entries)} will be triggered
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to