diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-05-02 10:15:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-02 10:15:47 -0400 |
commit | a8b602834f3d9b318f943d756914a0f28ee8fc44 (patch) | |
tree | 3e6242120b0def950309b04e582fda70dd237fd0 /ext/js/pages/settings | |
parent | 46f60619d58c355afd067f391c3f7dec5f63577a (diff) |
Fix the "Prefix wildcard searches supported" toggle having incorrect state (#1650)
Diffstat (limited to 'ext/js/pages/settings')
-rw-r--r-- | ext/js/pages/settings/dictionary-controller.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/pages/settings/dictionary-controller.js b/ext/js/pages/settings/dictionary-controller.js index dcbe0988..6f37798c 100644 --- a/ext/js/pages/settings/dictionary-controller.js +++ b/ext/js/pages/settings/dictionary-controller.js @@ -117,7 +117,7 @@ class DictionaryEntry { } _showDetails() { - const {title, revision, version} = this._dictionaryInfo; + const {title, revision, version, prefixWildcardsSupported} = this._dictionaryInfo; const modal = this._dictionaryController.modalController.getModal('dictionary-details'); @@ -125,6 +125,7 @@ class DictionaryEntry { modal.node.querySelector('.dictionary-version').textContent = `rev.${revision}`; modal.node.querySelector('.dictionary-outdated-notification').hidden = (version >= 3); modal.node.querySelector('.dictionary-counts').textContent = this._counts !== null ? JSON.stringify(this._counts, null, 4) : ''; + modal.node.querySelector('.dictionary-prefix-wildcard-searches-supported').checked = prefixWildcardsSupported; this._setupDetails(modal.node.querySelector('.dictionary-details-table')); modal.setVisible(true); |