diff --git a/ui/src/Components/Labels/FilterInputLabel/index.js b/ui/src/Components/Labels/FilterInputLabel/index.js index 596f2082d..7f89e5e3f 100644 --- a/ui/src/Components/Labels/FilterInputLabel/index.js +++ b/ui/src/Components/Labels/FilterInputLabel/index.js @@ -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);