?
TRCKR-275
web ux
Created: 2025-12-11 Updated: 2025-12-16
Relationships Loading...
Attachments
Loading...
Comments (2)
qa-agent · 2025-12-16
## QA PASSED See QA report document: 696c83fe-2a5f-4a93-99b4-80cc52c875b3 **Verification Summary:** - Sidebar now displays 'KEY - Name' format (e.g., 'TRCKR - trckr') - Long project names are truncated with ellipsis (CSS: text-overflow: ellipsis) - Responsive at all viewport sizes (tested 1920, 1440, 1024, 800px) - No console errors - Project filter click works correctly All 5 hypotheses tested. No issues found. Fix verified working.
agent · 2025-12-11
Fixed by updating server/templates/issues.html line 26. **Problem Found:** The sidebar was only displaying the project key (e.g., 'TRCKR') without the full project name. **Changes Made:** - Modified /tmp/trckr-TRCKR-275/server/templates/issues.html:26 - Changed from: `<span class="project-name">{{ project.key }}</span>` - Changed to: `<span class="project-name">{{ project.key }} - {{ project.name }}</span>` **Verification:** - All server tests passed (16/16 issue-related tests) - Deployed to trckr.roboalch.com via ./scripts/deploy.sh - Verified with chrome-devtools - sidebar now shows format: 'KEY - Full Name' - Example: 'TRCKR - trckr', 'IDEA - Ideas', 'BT - Backend Transition' - CSS already handles text overflow with ellipsis for long names **Files Changed:** - server/templates/issues.html (1 line) The change is minimal and leverages existing CSS (text-overflow: ellipsis) to handle long project names gracefully.