From 093ae3974f5d38d09598c1efb6494e68ca350244 Mon Sep 17 00:00:00 2001 From: Christopher Tso Date: Tue, 7 Jul 2026 23:43:08 +0200 Subject: [PATCH] fix(dashboard): use provider wording in recent runs --- apps/dashboard/src/components/AnalyticsCharts.tsx | 8 ++++---- apps/dashboard/src/components/EvalDetail.tsx | 2 +- .../dashboard/src/components/ResultTable.test.tsx | 4 ++-- apps/dashboard/src/components/ResultTable.tsx | 10 +++++----- apps/dashboard/src/components/RunEvalModal.tsx | 6 +++--- apps/dashboard/src/components/RunList.tsx | 6 +++--- apps/dashboard/src/components/Sidebar.tsx | 2 +- apps/dashboard/src/components/TagValueDetail.tsx | 4 ++-- apps/dashboard/src/components/TagsTab.tsx | 2 +- apps/dashboard/src/components/TargetsTab.tsx | 15 ++++++++------- apps/dashboard/src/lib/result-table.test.ts | 1 + apps/dashboard/src/lib/result-table.ts | 2 +- apps/dashboard/src/routes/index.tsx | 4 ++-- apps/dashboard/src/routes/projects/$projectId.tsx | 4 ++-- .../content/docs/docs/next/tools/dashboard.mdx | 14 +++++++------- 15 files changed, 43 insertions(+), 41 deletions(-) diff --git a/apps/dashboard/src/components/AnalyticsCharts.tsx b/apps/dashboard/src/components/AnalyticsCharts.tsx index f72dcdd1c..22ed0ead2 100644 --- a/apps/dashboard/src/components/AnalyticsCharts.tsx +++ b/apps/dashboard/src/components/AnalyticsCharts.tsx @@ -118,7 +118,7 @@ export function AnalyticsCharts({ data, projectId }: AnalyticsChartsProps) { htmlFor="baseline-select" className="text-xs font-medium uppercase tracking-wider text-gray-500" > - Baseline target + Baseline provider/model - Select a baseline target above to see gain and delta charts. + Select a baseline provider/model above to see gain and delta charts.
- No gain data available. Ensure multiple targets exist. + No gain data available. Ensure multiple provider/model labels exist.
- {runCount} run{runCount !== 1 ? 's' : ''} · {targetCount} target + {runCount} run{runCount !== 1 ? 's' : ''} · {targetCount} provider/model label {targetCount !== 1 ? 's' : ''} {group?.last_run && ( · Last run: {formatTimestamp(group.last_run)} @@ -81,7 +81,7 @@ export function TagValueDetail({ tagKey, tagValue, projectId }: TagValueDetailPr {group && (
No targets found
No provider/model labels found
- Targets will appear here once evaluations are run with target labels. + Provider/model labels will appear here once evaluations have run.
No runs found for this target
No runs found for this provider/model label
- This target summary exists, but there are no matching runs to group by experiment. + This provider/model summary exists, but there are no matching runs to group by + experiment.
No projects registered yet.
- Add a project path to start browsing runs, tags, analytics, and targets. + Add a project path to start browsing runs, tags, analytics, and providers.