-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
export.js: remove jquery and convert to typescript #4267
Conversation
chooseOptionsPanel.classList.remove("hidden"); // this panel is initially hidden | ||
chooseCollapse.hide(); | ||
chooseOptionsCollapse.show(); | ||
form.action = formUrl; |
Check warning
Code scanning / CodeQL
DOM text reinterpreted as HTML
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we ignore the CodeQL warning?
Yes we can ignore it. We are using the In our case the input field is a checkbox, and the value is always a numeric id set by our back-end. So I see no reason to sanitize this value |
This pull request removes jquery from export.js, and converts it to typesciprt.
It is progress on #3590