pierrejeambrun commented on code in PR #62797:
URL: https://github.com/apache/airflow/pull/62797#discussion_r2931903407


##########
airflow-core/src/airflow/ui/src/layouts/Details/PanelButtons.tsx:
##########
@@ -201,6 +213,30 @@ export const PanelButtons = ({
     setTriggeringUserFilter(trimmedValue === "" ? undefined : trimmedValue);
   };
 
+  const runAfterRange: DateRangeValue = {
+    endDate: runAfterLte,
+    startDate: runAfterGte,
+  };
+
+  const handleRunAfterRangeChange = (next: DateRangeValue) => {
+    setRunAfterGte(next.startDate);
+    setRunAfterLte(next.endDate);
+  };

Review Comment:
   When we click on the 'cross' to clear the filter values, the grid isn't 
updated. This doens't trigger a re-render but should.



-- 
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