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
This is an issue introduced by #4258. It affects light DOM components, and specifically named slots whose slot names are forwarded, and only when those slot names are duplicated in the containing template.
The bug is a bit hard to describe, so it's easier to illustrate with a repro: 5035243
Note the duplicated slots with the same name (navigation). This is the key thing that triggers the bug when slot forwarding is present. If the condition (in this case isTablet) is toggled, then the content that should be rendered inside of the <slot> is not rendered.
The text was updated successfully, but these errors were encountered:
This is an issue introduced by #4258. It affects light DOM components, and specifically named slots whose slot names are forwarded, and only when those slot names are duplicated in the containing template.
The bug is a bit hard to describe, so it's easier to illustrate with a repro: 5035243
The key component here is
header.html
:Note the duplicated slots with the same name (
navigation
). This is the key thing that triggers the bug when slot forwarding is present. If the condition (in this caseisTablet
) is toggled, then the content that should be rendered inside of the<slot>
is not rendered.The text was updated successfully, but these errors were encountered: