diff --git a/src/components/ui/TagDisplay.tsx b/src/components/ui/TagDisplay.tsx index b3eff64..2e7900e 100644 --- a/src/components/ui/TagDisplay.tsx +++ b/src/components/ui/TagDisplay.tsx @@ -9,6 +9,7 @@ interface TagDisplayProps { size?: 'sm' | 'md' | 'lg'; maxTags?: number; showColors?: boolean; + showDot?: boolean; onClick?: (tagName: string) => void; className?: string; } @@ -19,6 +20,7 @@ export function TagDisplay({ size = 'sm', maxTags, showColors = true, + showDot = true, onClick, className = "" }: TagDisplayProps) { @@ -60,7 +62,7 @@ export function TagDisplay({ color: showColors ? color : undefined }} > - {showColors && ( + {showColors && showDot && (