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
I'm not sure if I'm doing this correctly, but here is my component:
constdescribedby=writable();const{ container }=render(html`<${DescriptionProvider}name={"test"} let:describedby=${describedby}><divaria-describedby=${describedby}><${Description}>I am a description</${Description}><span>Contents</span></div></${DescriptionProvider}>`);
And the snapshot that generates has <div aria-describedby=[Object object]>, but if I'm using a standalone component, then it would render a string headlessui-description-1.
I've tried using a get on the store, but I think that's a greedy get, so it's blank.
Am I handling the slot props incorrectly?
The text was updated successfully, but these errors were encountered:
I'm not sure if I'm doing this correctly, but here is my component:
And the snapshot that generates has
<div aria-describedby=[Object object]>
, but if I'm using a standalone component, then it would render a stringheadlessui-description-1
.I've tried using a
get
on the store, but I think that's a greedy get, so it's blank.Am I handling the slot props incorrectly?
The text was updated successfully, but these errors were encountered: