refactor(store): replace tag pills with category pills, fix sort dates

- Replace tag filter pills with category filter pills (less duplication)
- Prefer per-plugin last_updated over repo-wide pushed_at for sort

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Chuck
2026-02-16 10:38:27 -05:00
parent 34a55b5a55
commit 4c2c7c0d17
3 changed files with 38 additions and 40 deletions

View File

@@ -216,12 +216,12 @@
</button>
</div>
<!-- Row 2: Tag Pills (populated dynamically) -->
<div id="filter-tags-container" class="hidden">
<!-- Row 2: Category Pills (populated dynamically) -->
<div id="filter-categories-container" class="hidden">
<div class="flex items-center gap-2 flex-wrap">
<span class="text-xs font-medium text-gray-600 whitespace-nowrap">Tags:</span>
<div id="filter-tags-pills" class="flex flex-wrap gap-1.5">
<!-- Dynamically populated tag pills -->
<span class="text-xs font-medium text-gray-600 whitespace-nowrap">Categories:</span>
<div id="filter-categories-pills" class="flex flex-wrap gap-1.5">
<!-- Dynamically populated category pills -->
</div>
</div>
</div>