Bug
Click a depicts pill (Wikidata Q-ID tag) in a table cell → a preview popover appears with QID, label, "Property: P180 — depicts", "Source: Wikidata", and an "Open on Wikidata" footer button.
Two problems:
- All preview content is placeholder. No live Wikidata fetch — labels / descriptions come from the local KNOWN_DEPICTS mock pool (src/vocabulary.js). Items not in that pool show nothing useful.
- "Open on Wikidata" button has no onClick — dead button. No href, no handler.
Where
src/table.jsx:2620-2645 — PillInfoPopover, kind === "depicts" branch. Dead button at line 2640.
Expected
Build the popover for real:
- Fetch live label / description / (optional) image from Wikidata for the QID; cache 5 min.
- Wire "Open on Wikidata" to open https://www.wikidata.org/wiki/<QID> in a new tab.
Reported by
Daanvr, 2026-05-08, during dead-UI review.