diff --git a/web/components/tag-selector.tsx b/web/components/tag-selector.tsx index ead0e21..2fa7d89 100644 --- a/web/components/tag-selector.tsx +++ b/web/components/tag-selector.tsx @@ -1,7 +1,6 @@ "use client" import { - CheckIcon, ChevronRightIcon, ChevronsUpDownIcon, Loader2Icon, @@ -253,6 +252,11 @@ export function TagSelector(props: TagSelectorProps) { value={tag.searchableText} disabled={disabled || pendingTagId !== null} onSelect={() => handleSelect(tag.id)} + className={cn( + props.mode === "single" && + checked && + "bg-muted text-foreground" + )} >
) : ( - + )} {tag.name}