Skip to content

Commit 5c3206a

Browse files
tirkarthinailo2c
authored andcommitted
Delete paused query parameter when filter value is all. (apache#47607)
1 parent 9032cff commit 5c3206a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

80-
if (val === undefined) {
80+
if (val === undefined || val === "all") {
8181
searchParams.delete(PAUSED_PARAM);
8282
} else {
8383
searchParams.set(PAUSED_PARAM, val);

0 commit comments

Comments
 (0)