We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b14b333 commit ba1968fCopy full SHA for ba1968f
airflow-core/src/airflow/ui/src/pages/DagsList/DagsFilters.tsx
@@ -82,7 +82,7 @@ export const DagsFilters = () => {
82
({ value }: SelectValueChangeDetails<string>) => {
83
const [val] = value;
84
85
- if (val === undefined || val === "all") {
+ if (val === undefined) {
86
searchParams.delete(PAUSED_PARAM);
87
} else {
88
searchParams.set(PAUSED_PARAM, val);
0 commit comments