You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within an app with SSR+Hydration and Routing. Reload the app (F5), navigate to a route with the effected code such that it's client-side rendered. Not sure if a CSR-only app does this also.
<ParentElement> // tested ul and tbody so far
<Transition>
<For ...>
<ChildElement /> // tested li and tr so far
</For>
</Transition>
</ParentElement>
Expected behavior
I didn't expect having the "parent" element outside of the Transition|Suspense to cause tons of warning to pop up in the console. Other than that - I haven't discovered any odd side-effects yet.
Screenshots
Additional context
Thanks.
If a minimal example project is needed, please let me know.
The text was updated successfully, but these errors were encountered:
Please include a minimal reproduction: i.e., a small, self-contained example that compiles as is, without requiring other code from your project, and reproduces the bug.
Describe the bug
Odd warnings are being generated when using
Transition|Suspense
inside of a "parent" element; such as:<ul>
or<tbody>
.Example warning:
[WARNING] Non-fatal error at ... while calling insertNode on
Code that produced the warnings:
Code that does not produce warnings:
Another example where warnings were fixed by putting the "parent" element inside of the
Transition
:Before, the component with this
view!
was being called from within atbody
.Leptos Dependencies
Please copy and paste the Leptos dependencies and features from your
Cargo.toml
.For example:
To Reproduce
See reproduction: https://github.com/dev-inigmas/leptos_3385
Within an app with SSR+Hydration and Routing. Reload the app (
F5
), navigate to a route with the effected code such that it's client-side rendered. Not sure if a CSR-only app does this also.Expected behavior
I didn't expect having the "parent" element outside of the
Transition|Suspense
to cause tons of warning to pop up in the console. Other than that - I haven't discovered any odd side-effects yet.Screenshots
Additional context
Thanks.
If a minimal example project is needed, please let me know.
The text was updated successfully, but these errors were encountered: