Skip to content

Commit

Permalink
geosolutions-it#9706: fix test failure by remove unused action in fea…
Browse files Browse the repository at this point in the history
…turegrid file
  • Loading branch information
mahmoudadel54 committed Nov 23, 2023
1 parent 7edb767 commit 2bec670
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions web/client/reducers/featuregrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,22 +367,6 @@ function featuregrid(state = emptyResultsState, action) {
}
return state;
}
case UPDATE_OPERATOR_QUICK_FILTER : {
const {attribute, operator} = (action || {});
if (attribute) {
const filter = state.filters[attribute];
return assign({}, state, {
filters: {
[attribute]: {
...filter,
operator: operator,
value: undefined
}
}
});
}
return state;
}
case UPDATE_FILTER : {
const {attribute} = (action.update || {});
if (attribute && action.append) {
Expand Down

0 comments on commit 2bec670

Please sign in to comment.