mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 03:55:55 +00:00
fix(plugin-market): cursor-pointer on tag filter trigger
The TagsFilter Select trigger used the default cursor; add cursor-pointer so the tag filter is clearly clickable. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -44,7 +44,7 @@ export function TagsFilter({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Select open={open} onOpenChange={setOpen}>
|
<Select open={open} onOpenChange={setOpen}>
|
||||||
<SelectTrigger className="w-[140px]">
|
<SelectTrigger className="w-[140px] cursor-pointer">
|
||||||
<div className="flex items-center gap-2 w-full">
|
<div className="flex items-center gap-2 w-full">
|
||||||
<TagIcon className="h-4 w-4 flex-shrink-0" />
|
<TagIcon className="h-4 w-4 flex-shrink-0" />
|
||||||
{selectedTags.length === 0 ? (
|
{selectedTags.length === 0 ? (
|
||||||
|
|||||||
Reference in New Issue
Block a user