Skip to content
Snippets Groups Projects
Commit 2aca966d authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Fix wrong expert mode check

parent 99e82a1c
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ function queryRenderResults(payload) { ...@@ -57,7 +57,7 @@ function queryRenderResults(payload) {
activateInspect(); activateInspect();
} }
// inital expert mode check and activation // inital expert mode check and activation
if (expertModeSwitchElement) { if (expertModeSwitchElement.checked) {
let initialTokenElements = document.getElementsByClassName("token"); let initialTokenElements = document.getElementsByClassName("token");
expertModeOn(initialTokenElements, resultsJSON); expertModeOn(initialTokenElements, resultsJSON);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment