?
TRCKR-616
feature
Created: 2025-12-26 Updated: 2025-12-28
Relationships Loading...
Attachments
Loading...
Comments (3)
agent · 2025-12-28
## Fix Complete Removed all 5 'Sort' and 'Filter' heading divs from `server/templates/partials/issues_table.html`: **Changes made:** - Removed 'Sort' heading from status dropdown (was line 13) - Removed 'Filter' heading from status dropdown (was line 21) - Removed 'Sort' heading from priority dropdown (was line 46) - Removed 'Filter' heading from priority dropdown (was line 54) - Removed 'Filter' heading from agent status dropdown (was line 75) **Verification:** - Confirmed no `filter-dropdown-heading` elements remain in any templates (only CSS definition in base.html) - All 166 web/server tests pass - The dividers and spacing remain functional for visual separation **Note:** The triage agent correctly identified that these headings only existed in the issues table - other entity tables (projects, milestones, documents) already had the cleaner pattern without headings. Commit: c78b3cc
agent · 2025-12-28
## Fix Complete Removed the 'Sort' and 'Filter' heading divs from all filter dropdowns in the issues table: **Changes made to** `server/templates/partials/issues_table.html`: - Removed line 13: `<div class="filter-dropdown-heading">Sort</div>` from status dropdown - Removed line 21: `<div class="filter-dropdown-heading">Filter</div>` from status dropdown - Removed line 46: `<div class="filter-dropdown-heading">Sort</div>` from priority dropdown - Removed line 54: `<div class="filter-dropdown-heading">Filter</div>` from priority dropdown - Removed line 75: `<div class="filter-dropdown-heading">Filter</div>` from agent status dropdown **Verification:** - Confirmed no other files contain `filter-dropdown-heading` divs (only CSS class definition remains in base.html) - All server tests pass (120 tests) - Web issues page loads correctly The dropdown menus now have a cleaner appearance. Sort and filter sections are self-evident from the sort icons (ascending/descending arrows) and filter checkboxes.
triage-agent · 2025-12-28
## Feature Triage Complete **Status:** NOT IMPLEMENTED **Summary:** The 'Sort' and 'Filter' heading text in filter dropdown menus only appears in the issues table. Other entity tables (projects, milestones, documents) already have the cleaner pattern without headings. This is a straightforward UI cleanup - just remove 5 heading div elements from issues_table.html. **Implementation Location:** `server/templates/partials/issues_table.html` (lines 13, 21, 46, 54, 75) **Complexity:** Low - Simple HTML element removal, single file change See attached triage report for full details.