Skip to content

Commit

Permalink
docs: update combobox and select example
Browse files Browse the repository at this point in the history
  • Loading branch information
calvo-jp committed Nov 9, 2024
1 parent 569f92d commit 818c16a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/combobox.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ A component that combines a text input with a dropdown list for selecting or ent
<Combobox.Positioner>
<Combobox.Content>
{#each matches as item (item.value)}
{#each collection.items as item}
<Combobox.Item {item}>
<Combobox.ItemText>{item.label}</Combobox.ItemText>
<Combobox.ItemIndicator>
Expand Down
2 changes: 1 addition & 1 deletion docs/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ A component for choosing an option from a dropdown list.
<Select.Positioner>
<Select.Content>
{#each items as item}
{#each collection.items as item}
<Select.Item {item}>
<Select.ItemText />
<Select.ItemIndicator>
Expand Down

0 comments on commit 818c16a

Please sign in to comment.