Files
shadcn-ui/apps/www/content/docs/components
rds_agi 36a9c1bb71 Fixed all issues related Command component (#4154)
# Fix Command Component issues and update documentation

## Changes
- Resolve Command Component issues by wrapping `<CommandGroup />` inside `<CommandList>`
- Update deprecated docs in `combobox.mdx` to reflect latest `<Command />` component usage

### Code Changes
From:
```tsx
<Command>
  ...
  <CommandGroup>
    ...
  </CommandGroup>
</Command>
```
To:
```tsx
<Command>
  ...
  <CommandList>
    <CommandGroup>
      ...
    </CommandGroup>
  </CommandList>
</Command>
```

## Visual Comparison
Before & After comparison: 

https://github.com/shadcn-ui/ui/assets/77154365/156b7180-54e6-45aa-8934-b4fb99e6160e

## Summary
By wrapping `<CommandGroup />` inside `<CommandList>{children}</CommandList>`, all issues related to the Command Component have been resolved.
2024-07-10 12:40:55 +00:00
..
2023-12-22 23:36:59 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-07-09 21:08:37 +04:00
2024-07-10 12:24:25 +00:00
2024-01-28 12:47:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00
2024-04-17 23:05:45 +04:00