Skip to content
Snippets Groups Projects
Commit a7f36086 authored by Stekelenburg, A.V. (Alexander, Student )'s avatar Stekelenburg, A.V. (Alexander, Student )
Browse files

Fix bug that deleted event handlers on input boxes

parent 5eac0f6d
No related branches found
No related tags found
No related merge requests found
......@@ -151,10 +151,10 @@
break;
}
}
constantsUl.innerHTML = constantsUl.innerHTML === ""
? "There are no undefined constants."
: constantsUl.innerHTML;
if (constantsUl.innerHTML === "") {
constantsUl.innerHTML = "There are no undefined constants.";
}
vscode.setState({ tools: oldState.tools, constants: constants, options: oldState.options, currentUri: uri });
}
......
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