fix(ui): resume updates before editing filters

Fixes #1869
This commit is contained in:
Łukasz Mierzwa
2020-06-21 12:16:08 +01:00
committed by Łukasz Mierzwa
parent ccaff9674d
commit def52f4fab

View File

@@ -16,6 +16,7 @@ import { InlineEdit } from "Components/InlineEdit";
const FilterInputLabel = ({ alertStore, filter }) => {
const onChange = (val) => {
alertStore.status.resume();
// if filter is empty string then remove it
if (val === "") {
alertStore.filters.removeFilter(filter.raw);