Subham-KRLX opened a new pull request, #62848: URL: https://github.com/apache/airflow/pull/62848
The logical date filter on the /dagruns page was present in the UI but had no effect — selecting a date range did not filter the results. Root cause: DagRuns.tsx never read logical_date_gte / logical_date_lte from URL search params and never passed logicalDateGte / logicalDateLte to the useDagRunServiceGetDagRuns API call. All other date filters (run_after, start_date, end_date) were correctly wired up. Fix: Added the missing plumbing in DagRuns.tsx: Destructure LOGICAL_DATE_GTE and LOGICAL_DATE_LTE from SearchParamsKeys Read the params from URL via searchParams.get() Pass them to the useDagRunServiceGetDagRuns hook Follows the exact same pattern already used in TaskInstances.tsx. closes: #62799 -- 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]
