We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The client code currently strips script tags and replaces them with div.
script
div
For example, this script element wont appear within the browser's DOM.
@component def my_component(): return html.script("console.log('hello_world');")
Remove this behavior, since we now officially support script within ReactPy. There's no longer any reason to visually hide the script tag.
The text was updated successfully, but these errors were encountered:
@Archmonger Please assign this stuff to me, I think I can do this.
Sorry, something went wrong.
@rishabhRsinghvi We do not use the GitHub issue assignment feature. Feel free to open a PR and link it to this issue.
Successfully merging a pull request may close this issue.
Current Situation
The client code currently strips
script
tags and replaces them withdiv
.For example, this script element wont appear within the browser's DOM.
Proposed Actions
Remove this behavior, since we now officially support
script
within ReactPy. There's no longer any reason to visually hide the script tag.The text was updated successfully, but these errors were encountered: