Fix “Filter this post” potentially listing deleted filters (#19051)

lolsob-rspec
Claire 2022-08-25 17:36:35 +02:00 committed by GitHub
parent e6df1b77bd
commit 1d3d86fa53
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ export default function filters(state = ImmutableMap(), action) {
case FILTERS_CREATE_SUCCESS:
return normalizeFilter(state, action.filter);
case FILTERS_FETCH_SUCCESS:
//TODO: handle deleting obsolete filters
return normalizeFilters(ImmutableMap(), action.filters);
case FILTERS_IMPORT:
return normalizeFilters(state, action.filters);
default: