Skip to content

Commit

Permalink
Fix documentation between combobox and selecy (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
victortrinh2 authored Dec 23, 2024
2 parents 4b0c5f0 + 8e5845b commit 83137e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@ export default function Example() {
<ComboBox
label="Roles"
items={list.items}
maxHeight="core_1280"
isLoading={list.isLoading}
onLoadMore={list.loadMore}
listBoxProps={{
maxHeight: "core_1280"
}}
>
{item => {
return <ComboBoxItem id={item.name}>{item.name}</ComboBoxItem>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function Example() {
items={list.items}
isLoading={list.isLoading}
onLoadMore={list.loadMore}
popoverProps={{
listBoxProps={{
maxHeight: "core_1280"
}}
>
Expand Down

0 comments on commit 83137e9

Please sign in to comment.