aboutsummaryrefslogtreecommitdiff
path: root/ext/js/pages/settings/dictionary-controller.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-05-02 10:15:47 -0400
committerGitHub <noreply@github.com>2021-05-02 10:15:47 -0400
commita8b602834f3d9b318f943d756914a0f28ee8fc44 (patch)
tree3e6242120b0def950309b04e582fda70dd237fd0 /ext/js/pages/settings/dictionary-controller.js
parent46f60619d58c355afd067f391c3f7dec5f63577a (diff)
Fix the "Prefix wildcard searches supported" toggle having incorrect state (#1650)
Diffstat (limited to 'ext/js/pages/settings/dictionary-controller.js')
-rw-r--r--ext/js/pages/settings/dictionary-controller.js3
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);