diff --git a/airflow-core/src/airflow/ui/src/constants/filterConfigs.tsx b/airflow-core/src/airflow/ui/src/constants/filterConfigs.tsx index ec56b6cd8fc25..08f148875c8b8 100644 --- a/airflow-core/src/airflow/ui/src/constants/filterConfigs.tsx +++ b/airflow-core/src/airflow/ui/src/constants/filterConfigs.tsx @@ -207,7 +207,7 @@ export const useFilterConfigs = () => { {translate(option.label)} ), - value: option.value, + value: option.value === "all" ? "" : option.value, })), type: FilterTypes.SELECT, }, @@ -226,7 +226,7 @@ export const useFilterConfigs = () => { ) : ( {translate(option.label)} ), - value: option.value, + value: option.value === "all" ? "" : option.value, })), type: FilterTypes.SELECT, },