aboutsummaryrefslogtreecommitdiff
path: root/ext/js/pages/settings/collapsible-dictionary-controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/pages/settings/collapsible-dictionary-controller.js')
-rw-r--r--ext/js/pages/settings/collapsible-dictionary-controller.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/pages/settings/collapsible-dictionary-controller.js b/ext/js/pages/settings/collapsible-dictionary-controller.js
index 62f84b96..f2a03b5c 100644
--- a/ext/js/pages/settings/collapsible-dictionary-controller.js
+++ b/ext/js/pages/settings/collapsible-dictionary-controller.js
@@ -99,7 +99,7 @@ export class CollapsibleDictionaryController {
/** */
_onDefinitionsCollapsibleChange() {
- this._updateAllSelectFresh();
+ void this._updateAllSelectFresh();
}
/**
@@ -109,7 +109,7 @@ export class CollapsibleDictionaryController {
const {value} = /** @type {HTMLSelectElement} */ (e.currentTarget);
const value2 = this._normalizeDictionaryDefinitionsCollapsible(value);
if (value2 === null) { return; }
- this._setDefinitionsCollapsibleAll(value2);
+ void this._setDefinitionsCollapsibleAll(value2);
}
/** */