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 9032cff commit 5c3206aCopy full SHA for 5c3206a
airflow/ui/src/pages/DagsList/DagsFilters.tsx
@@ -77,7 +77,7 @@ export const DagsFilters = () => {
77
({ value }: SelectValueChangeDetails<string>) => {
78
const [val] = value;
79
80
- if (val === undefined) {
+ if (val === undefined || val === "all") {
81
searchParams.delete(PAUSED_PARAM);
82
} else {
83
searchParams.set(PAUSED_PARAM, val);
0 commit comments