This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 74348ec3e87 [v3-1-test] fix: reset pagination on DagList search
(#60326) (#60336)
74348ec3e87 is described below
commit 74348ec3e87f5691ba103c0cba6af3f7d778ec84
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jan 9 13:01:10 2026 -0500
[v3-1-test] fix: reset pagination on DagList search (#60326) (#60336)
(cherry picked from commit f23b96babacbf628897b8382363c4f3e45ce56c6)
Co-authored-by: Oscar Ligthart <[email protected]>
---
airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx | 1 +
1 file changed, 1 insertion(+)
diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
index 264964afa68..b5445058873 100644
--- a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsList.tsx
@@ -232,6 +232,7 @@ export const DagsList = () => {
} else {
searchParams.delete(NAME_PATTERN);
}
+ searchParams.delete("offset");
setSearchParams(searchParams);
};