app/components/datasets/documents/detail/completed/common/tag.tsx
@@ -4,8 +4,8 @@ const Tag = ({ text, className }: { text: string; className?: string }) => { return ( <div className={cn('inline-flex items-center gap-x-0.5', className)}> <span className='text-xs font-medium text-text-quaternary'>#</span> <span className='line-clamp-1 max-w-12 shrink-0 text-xs text-text-tertiary'>{text}</span> <span className='text-text-quaternary text-xs font-medium'>#</span> <span className='text-text-tertiary text-xs max-w-12 line-clamp-1 shrink-0'>{text}</span> </div> ) }