This is an automated email from the ASF dual-hosted git repository.
bbovenzi 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 cccf0d1aa4 Add filter, sorting and pagination changes as dependency
for API. (#43188)
cccf0d1aa4 is described below
commit cccf0d1aa44f666f4be371758d9a9926e6815e7d
Author: Karthikeyan Singaravelan <[email protected]>
AuthorDate: Tue Oct 22 23:49:43 2024 +0530
Add filter, sorting and pagination changes as dependency for API. (#43188)
---
airflow/ui/src/pages/DagsList/DagsList.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow/ui/src/pages/DagsList/DagsList.tsx
b/airflow/ui/src/pages/DagsList/DagsList.tsx
index 9d5b01e20f..ad1b08fe87 100644
--- a/airflow/ui/src/pages/DagsList/DagsList.tsx
+++ b/airflow/ui/src/pages/DagsList/DagsList.tsx
@@ -164,7 +164,7 @@ export const DagsList = () => {
orderBy,
paused: showPaused === null ? undefined : showPaused === "true",
},
- [dagDisplayNamePattern, showPaused],
+ [dagDisplayNamePattern, showPaused, lastDagRunState, pagination, orderBy],
{
refetchOnMount: true,
refetchOnReconnect: false,