SPB Git forge

spb/ai-atlas

Public
41commits 1branches 0releases
4.6 MBsize
maindefault branch
12 days agolast push
HTML 77.2% TypeScript 10.5% Python 9.6% JavaScript 2.5%

web: label the record score 'data quality'

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Simon-Pierre Boucher committed 12 days ago (Sep 12, 2026) parent 60461c7

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