update filter stats after deleting a style

This commit is contained in:
tophf 2018-02-26 23:16:10 +03:00
parent e4150aa8b0
commit 0fd5d100c9

View File

@ -1,6 +1,6 @@
/* /*
global messageBox getStyleWithNoCode retranslateCSS global messageBox getStyleWithNoCode retranslateCSS
global filtersSelector filterAndAppend urlFilterParam global filtersSelector filterAndAppend urlFilterParam showFiltersStats
global checkUpdate handleUpdateInstalled global checkUpdate handleUpdateInstalled
global objectDiff global objectDiff
global configDialog global configDialog
@ -574,6 +574,7 @@ function handleDelete(id) {
const btnApply = $('#apply-all-updates'); const btnApply = $('#apply-all-updates');
btnApply.dataset.value = Number(btnApply.dataset.value) - 1; btnApply.dataset.value = Number(btnApply.dataset.value) - 1;
} }
showFiltersStats();
} }
} }