feat(ui): link sessions to chat page

- Session names in the Sessions table are now clickable links
- Clicking navigates to /chat?session=<key> with that session loaded
- Global sessions excluded (not real conversations)
- Added .session-link CSS styling (accent color, underline on hover)
- Chat page reads 'session' query param and cleans URL after applying
This commit is contained in:
Daniel Griesser
2026-01-08 11:05:40 +01:00
committed by Peter Steinberger
parent b3b84ffefa
commit 2e1dee197a
4 changed files with 38 additions and 4 deletions

View File

@@ -454,6 +454,15 @@
background: rgba(0, 0, 0, 0.2);
}
.session-link {
text-decoration: none;
color: var(--accent);
}
.session-link:hover {
text-decoration: underline;
}
.log-stream {
border: 1px solid var(--border);
border-radius: 14px;