Skip to content

Commit

Permalink
fix(traces): Keep traces visible behind the details slideover (#1709)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking authored Nov 4, 2023
1 parent 9f08b58 commit 1c8b8f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/src/Routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ const router = createBrowserRouter(
element={<TracingRoot />}
>
<Route index element={<TracingHomePage />} />
<Route path="traces">
<Route path=":traceId" element={<TracePage />} />
<Route element={<TracingHomePage />}>
<Route path="traces">
<Route path=":traceId" element={<TracePage />} />
</Route>
</Route>
</Route>
</Route>
Expand Down

0 comments on commit 1c8b8f1

Please sign in to comment.