From 6c6c55b43385f0fef67b6924c5e9ed41186a0cb9 Mon Sep 17 00:00:00 2001 From: Chika Date: Mon, 30 May 2022 14:17:44 +0300 Subject: [PATCH] stores: delete filter in clearOptions method --- stores/calculation/options/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stores/calculation/options/index.ts b/stores/calculation/options/index.ts index e810278..d3ba2cc 100644 --- a/stores/calculation/options/index.ts +++ b/stores/calculation/options/index.ts @@ -92,7 +92,7 @@ export default class OptionsStore { clearOptions = (elementName: Elements) => { this.options[elementName] = []; - + delete this.filters[elementName]; this.root.$calculation.$values.clearValueOfElement(elementName); };