Fix wrong expert mode check

This commit is contained in:
Stephan Porada 2020-04-06 14:35:57 +02:00
parent 99e82a1cc3
commit 2aca966d13

View File

@ -57,7 +57,7 @@ function queryRenderResults(payload) {
activateInspect();
}
// inital expert mode check and activation
if (expertModeSwitchElement) {
if (expertModeSwitchElement.checked) {
let initialTokenElements = document.getElementsByClassName("token");
expertModeOn(initialTokenElements, resultsJSON);
}