Replies: 2 comments
Also the key navigation not working with dynamic content |
0 replies
|
@zougari47 Were you able to find any fix for this? I'm encountering a similar issue for dynamic content. The list of items don't show properly when the search changes Edit: I fixed my issue. Ugh.... I needed to turn the As per the docs <Command shouldFilter={false}>
<Command.List>
{filteredItems.map((item) => {
return (
<Command.Item key={item} value={item}>
{item}
</Command.Item>
)
})}
</Command.List>
</Command> |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I try to use the command separator component but it's not rendered when using it with dynamic content. with static content works fine
I'm using Shadcn UI here is my snippet
All reactions