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
v0.40.0 brought a regression where VDOM elements cannot be rendered following a component.
v0.40.0
For example, Text 2 is never rendered in the following scenario:
Text 2
from idom import component, html, run @component def Test(): return html.div("Hello World!") @component def App(): return html.div( html.h1("Text 1"), Test(), html.h1("Text 2"), ) run(App)
This is a pretty major breaking bug, and needs to be resolved ASAP.
I personally would also yank the v0.40.0 release as it has been roughly a month of unusably broken behavior.
The text was updated successfully, but these errors were encountered:
I've got an idea on how to bypass the issues with JSON patch. Will try to get to this over the weekend.
Sorry, something went wrong.
Version has also been yanked.
Successfully merging a pull request may close this issue.
Current Situation
v0.40.0
brought a regression where VDOM elements cannot be rendered following a component.For example,
Text 2
is never rendered in the following scenario:Proposed Actions
This is a pretty major breaking bug, and needs to be resolved ASAP.
I personally would also yank the
v0.40.0
release as it has been roughly a month of unusably broken behavior.The text was updated successfully, but these errors were encountered: