Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ function BenchmarkEvalDetailPage() {
Run: {runId} / Eval: {evalId}
</p>
<h1 className="flex items-center gap-2 text-2xl font-semibold text-white">
<span className={`text-2xl font-bold leading-none ${passed ? 'text-emerald-400' : 'text-red-400'}`}>
<span
className={`text-2xl font-bold leading-none ${passed ? 'text-emerald-400' : 'text-red-400'}`}
>
{passed ? '✓' : '✗'}
</span>
{evalId}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function BenchmarkRunDetailPage() {
onClick={() => setShowRunEval(true)}
className="rounded-md bg-emerald-600 px-3 py-1.5 text-sm font-medium text-white hover:bg-emerald-500"
>
Re-run with Filters
Run evals
</button>
)}
</div>
Expand Down
4 changes: 3 additions & 1 deletion apps/studio/src/routes/evals/$runId.$evalId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ function EvalDetailPage() {
Run: {runId} / Eval: {evalId}
</p>
<h1 className="flex items-center gap-2 text-2xl font-semibold text-white">
<span className={`text-2xl font-bold leading-none ${passed ? 'text-emerald-400' : 'text-red-400'}`}>
<span
className={`text-2xl font-bold leading-none ${passed ? 'text-emerald-400' : 'text-red-400'}`}
>
{passed ? '✓' : '✗'}
</span>
{evalId}
Expand Down
2 changes: 1 addition & 1 deletion apps/studio/src/routes/runs/$runId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function RunDetailPage() {
onClick={() => setShowRunEval(true)}
className="rounded-md bg-emerald-600 px-3 py-1.5 text-sm font-medium text-white hover:bg-emerald-500"
>
Re-run with Filters
Run evals
</button>
)}
</div>
Expand Down
Loading