Skip to content
Open
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
5 changes: 5 additions & 0 deletions .changeset/0000-fix-trace-row-link-search-param.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"evalite": patch
---

Fix: clicking a trace row in the eval detail view now navigates to the per-trace panel. Previously the row's `Link` omitted `search: { trace }`, so the URL never changed and the right panel stayed on the eval-level view. Users had to manually append `?trace=N` to the URL as a workaround.
4 changes: 4 additions & 0 deletions apps/evalite-ui/app/routes/suite.$name.eval.$evalIndex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,10 @@ const TraceMenuItem = (props: {
name: props.name,
evalIndex: props.evalIndex,
}}
search={(prev) => ({
...prev,
trace: props.traceIndex,
})}
className={
"px-3 py-2 hover:bg-foreground/10 transition-colors border-l-4"
}
Expand Down