fix: three post-review corrections

- Filter source tags from gallery overlay refresh in view-modal.js and bulk-select.js
- Fix split(':', 1) bug causing series name to render as "undefined"
- Offset reader quick-nav above floating page indicator to prevent overlap

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-20 13:33:28 -04:00
parent bcd2016501
commit 1f33ca6cdf
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -508,8 +508,8 @@
if (!data.ok) return;
// Filter out archive tags (they're not shown)
const visibleTags = (data.tags || []).filter(t => t.kind !== 'archive');
// Filter out archive and source tags (they're not shown in overlays)
const visibleTags = (data.tags || []).filter(t => t.kind !== 'archive' && t.kind !== 'source');
// Find or create tag overlay
let overlay = item.querySelector('.tag-overlay');