fix: correct tag badge sizing in filter dropdown

Remove variant="blank" (forced h-4) and flex-1 (full width stretch)
to match the tag badge appearance from the settings page.
This commit is contained in:
Andrey Onishchenko
2026-02-13 19:19:03 +03:00
parent 1cb1b5083f
commit e049352f6d

View File

@@ -110,7 +110,6 @@ export function TagFilter({
onCheckedChange={() => handleTagToggle(tag.id)}
/>
<Badge
variant="blank"
style={{
backgroundColor: tag.color
? `${tag.color}33`
@@ -118,7 +117,7 @@ export function TagFilter({
color: tag.color || undefined,
borderColor: tag.color ? `${tag.color}66` : undefined,
}}
className="flex-1 border"
className="border"
>
{tag.name}
</Badge>