This is an automated email from the ASF dual-hosted git repository.

ephraimanierobi pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 18a55335b7394b2fc916fcbf7ae0a65896b48e64
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);
   };
 

Reply via email to