Skip to content

Commit 1c3e923

Browse files
authored
fix(kb-ui): fixed tags hover effect (#942)
1 parent e1d5e38 commit 1c3e923

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/knowledge-tags

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/knowledge-tags/knowledge-tags.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export function KnowledgeTags({ knowledgeBaseId, documentId }: KnowledgeTagsProp
471471
return (
472472
<div key={index} className='mb-1'>
473473
<div
474-
className={`cursor-pointer rounded-[10px] border bg-card transition-colors hover:bg-muted ${editingTagIndex === index ? 'space-y-2 p-2' : 'p-2'}`}
474+
className={`cursor-pointer rounded-[10px] border bg-card transition-colors ${editingTagIndex === index ? 'space-y-2 p-2' : 'p-2'}`}
475475
onClick={() => userPermissions.canEdit && toggleTagEditor(index)}
476476
>
477477
{/* Always show the tag display */}

0 commit comments

Comments
 (0)