Skip to content

Commit

Permalink
fix: adding saved filters one by one
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullokhmusaev committed Mar 1, 2022
1 parent 90d7c37 commit 3ec78ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/data/public/ui/filter_bar/filter_bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const FilterBarUI = React.memo(function FilterBarUI(props: Props) {
}, []);

useEffect(() => {
const savedFiltersGroupIds: number[] = [];
const savedFiltersGroupIds: number[] = [...selectedSavedFiltersGroupIds];
let groupId = getInitForField(props.multipleFilters, 'groupId', 1);
let id = getInitForField(props.multipleFilters, 'id', 0);

Expand Down

0 comments on commit 3ec78ce

Please sign in to comment.