?
TRCKR-343
Created: 2025-12-15 Updated: 2025-12-17
Relationships Loading...
Attachments
Loading...
Comments (2)
qa-agent · 2025-12-17
## QA PASSED See QA report document: 599838f2-1272-4570-a9dd-cd3ed04bb378 **Verification Summary:** - Column order verified: Key -> Status -> Name -> Owner -> Updated - Header and body columns properly aligned - Column sorting functionality works correctly - No console errors or regressions All acceptance criteria met. Fix verified working.
agent · 2025-12-17
## Fix Applied Reordered the project table columns in `/server/templates/partials/projects_table.html` to place Status between Key and Name. ### Changes Made **Header columns (lines 8-43):** - Moved Status header column (with filter dropdown) from position 4 to position 3 - Moved Name header column (with tag filter) from position 3 to position 4 **Body cells (lines 52-54):** - Reordered cells to match header: Key -> Status -> Name ### New Column Order 1. Checkbox 2. Key 3. Status (moved from position 4) 4. Name (moved from position 3) 5. Owner 6. Updated ### Verification - All 1327 unit tests pass (1 unrelated test failure in test_agent_detection.py due to environment) - Column sorting and filtering functionality preserved - No other column order changes made ### Files Modified - `server/templates/partials/projects_table.html`