Open
Description
Doing "light DOM slot forwarding" (i.e. renaming light DOM slots passed in to other slots) works in client-side rendering, but causes an error to be thrown during server-side rendering.
Repro: 391570c
This throws an error
Cannot read properties of undefined (reading 'find')
Here:
The reason is that the element
here is a "raw" type which doesn't have a HostAttributesKey
:
Activity