mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
Fix HTML editor hiding when selected as default (#2377)
This commit is contained in:
parent
eec8f9970a
commit
39ab53d22a
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
plainTextDefaults = states.plainTextDefaults;
|
||||
} else {
|
||||
plainTextDefaults = defaultPlainTexts;
|
||||
richTextsHidden = defaultPlainTexts;
|
||||
richTextsHidden = [...defaultPlainTexts];
|
||||
plainTextsHidden = Array.from(defaultPlainTexts, (v) => !v);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue