Skip to content

Commit ba1968f

Browse files
[v3-0-test] this makes "all" not show all dags (apache#53656) (apache#53672)
(cherry picked from commit 5db1b71) Co-authored-by: Zach Liu <[email protected]>
1 parent b14b333 commit ba1968f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const DagsFilters = () => {
8282
({ value }: SelectValueChangeDetails<string>) => {
8383
const [val] = value;
8484

85-
if (val === undefined || val === "all") {
85+
if (val === undefined) {
8686
searchParams.delete(PAUSED_PARAM);
8787
} else {
8888
searchParams.set(PAUSED_PARAM, val);

0 commit comments

Comments
 (0)