settings: add missing const
This commit is contained in:
parent
de28190f5a
commit
e063a315d4
@ -111,7 +111,7 @@ async function formMainDictionaryOptionsPopulate(options) {
|
|||||||
titles = titles.filter(title => options.dictionaries[title].enabled);
|
titles = titles.filter(title => options.dictionaries[title].enabled);
|
||||||
const formOptionsHtml = [];
|
const formOptionsHtml = [];
|
||||||
let mainDictionarySelected = false;
|
let mainDictionarySelected = false;
|
||||||
for (title of titles) {
|
for (const title of titles) {
|
||||||
if (options.general.mainDictionary === title) {
|
if (options.general.mainDictionary === title) {
|
||||||
mainDictionarySelected = true;
|
mainDictionarySelected = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user