Prajwal7842 commented on code in PR #62797:
URL: https://github.com/apache/airflow/pull/62797#discussion_r2936491586
##########
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:
Hey @pierrejeambrun thanks for the review. Can you tell me a little bit more
on the expected behavior. I tried playing around with the filter. When I clear
the filter dates selected, it refreshes it to the latest runs.
Can you share some test case I can follow.
--
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]