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

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


The following commit(s) were added to refs/heads/v3-0-test by this push:
     new ba1968fd591 [v3-0-test] this makes "all" not show all dags (#53656) 
(#53672)
ba1968fd591 is described below

commit ba1968fd591c78ac7a002ba12ac1ac54f9c36ceb
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 25 10:43:22 2025 +0200

    [v3-0-test] this makes "all" not show all dags (#53656) (#53672)
    
    (cherry picked from commit 5db1b715f7dac87c543865d1aece135a70f1c719)
    
    Co-authored-by: Zach Liu <zach...@users.noreply.github.com>
---
 airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx 
b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx
index 6f650c8c697..ed8f59bab57 100644
--- a/airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx
@@ -82,7 +82,7 @@ export const DagsFilters = () => {
     ({ value }: SelectValueChangeDetails<string>) => {
       const [val] = value;
 
-      if (val === undefined || val === "all") {
+      if (val === undefined) {
         searchParams.delete(PAUSED_PARAM);
       } else {
         searchParams.set(PAUSED_PARAM, val);

Reply via email to