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
The problem is the aside element for the info slot is getting processed by WebC as its own slot, and not included in the default rendering. I could add <slot name="info"></slot> directly at the bottom of the timeline item component, but then it would just pull in the aside element without the slot attribute which the DSD template expects.
I don't know if there's any way to bypass slot= getting roped into the WebC processing altogether in cases like these.
The text was updated successfully, but these errors were encountered:
Let's say I have a component
my-timeline
with a declarative Shadow DOM template, and inside the template it wants to render child components:and the timeline item:
The problem is the
aside
element for theinfo
slot is getting processed by WebC as its own slot, and not included in the default rendering. I could add<slot name="info"></slot>
directly at the bottom of the timeline item component, but then it would just pull in theaside
element without theslot
attribute which the DSD template expects.I don't know if there's any way to bypass
slot=
getting roped into the WebC processing altogether in cases like these.The text was updated successfully, but these errors were encountered: