Skip to content

Commit aae2d5d

Browse files
userFRMclaudewesm
authored
fix: preserve project name casing in group headers (#158)
## Summary - Remove `text-transform: capitalize` from `.group-header` so project names display with their original casing from the filesystem - Revert the `notifySyncComplete()` suppression during session watches — it caused stale sidebar and filter state (projects, agents, session counts stopped updating while any session was selected) ## Test plan - [ ] Open a session with "Group by project" enabled — project names should show original casing (e.g. "myProject" not "Myproject") - [ ] While watching a live session, trigger a background sync — sidebar session list and filter dropdowns should update without going stale --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: Wes McKinney <wesmckinn+git@gmail.com>
1 parent b5cabd7 commit aae2d5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/lib/components/sidebar/SessionList.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@
992992
font-size: 10px;
993993
font-weight: 600;
994994
color: var(--text-muted);
995-
text-transform: capitalize;
995+
text-transform: none;
996996
letter-spacing: 0.02em;
997997
background: var(--bg-inset);
998998
border-bottom: 1px solid var(--border-muted);

0 commit comments

Comments
 (0)