Skip to content

Commit

Permalink
Merge pull request #1213 from elie222/fix/label-search-combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
Elie Steinbock authored and GitHub committed Jan 6, 2026
2 parents 35b5c2e + bca48ba commit fa40fa2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/web/components/Combobox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ export function Combobox(props: {
<CommandItem
key={options.value}
value={options.value}
keywords={options.keywords ?? [options.label]}
keywords={
options.keywords
? [...options.keywords, options.label]
: [options.label]
}
onSelect={(currentValue) => {
onChangeValue(currentValue === value ? "" : currentValue);
setOpen(false);
Expand Down

0 comments on commit fa40fa2

Please sign in to comment.