web: label the record score 'data quality'
Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
1 changed file +1 −1
modified
apps/web/src/components/ui/entity.tsx
+1 −1
@@ -133,7 +133,7 @@ export function QualityMark({ q, className, label = false }: { q: number | undef | ||
| 133 | 133 | const tone = n >= 75 ? 'bg-positive' : n >= 45 ? 'bg-accent' : 'bg-warning'; |
| 134 | 134 | return ( |
| 135 | 135 | <span className={cn('inline-flex items-center gap-1.5 text-xs text-ink-3', className)} title={`Data quality ${Math.round(n)}/100 — how well AI Atlas knows this entity`}> |
| 136 | − {label && <span>quality</span>} | |
| 136 | + {label && <span>data quality</span>} | |
| 137 | 137 | <span className="relative h-1 w-10 overflow-hidden rounded-sm bg-rule-strong"> |
| 138 | 138 | <span className={cn('absolute inset-y-0 left-0', tone)} style={{ width: `${Math.min(100, Math.max(0, n))}%` }} /> |
| 139 | 139 | </span> |
| 140 | 140 | |