Conversation
Previously, the context popup only worked on links with the .ref-issue class inside .markup containers. This meant dashboard feed links and other issue/PR references outside rendered markdown never showed popups. Replace the markup-scoped approach with a global delegated mouseover listener that uses parseIssueHref to detect issue/PR links anywhere on the page. Add response caching so hovering the same issue from different links doesn't re-fetch. Make ContextPopup a pure display component with clickable repo and issue title links. Other changes: - Fix feed title <a> stretching full width (add tw-self-start) - Clean up Vue app on tippy destroy to prevent memory leaks - Clear cache and retry marker on fetch errors Co-Authored-By: Claude (Opus 4.6) <noreply@anthropic.com>
Delay popup fetch by 300ms so casual mouse passes don't trigger network requests. Extract the popup creation logic into a separate showRefIssuePopup function for clarity. Co-Authored-By: Claude (Opus 4.6) <noreply@anthropic.com>
bircni
left a comment
There was a problem hiding this comment.
Just an Idea but what about also showing the actions state? so X or whatever to see PRs state
|
Right, on issue list it probably make no sense, project is debatable. Will investigate how GitHub does this. |
|
Please make sure the framework is designed by the correct approach: let callers tell framework what they want, but not let framework guess what it should do for different callers. You need to explicitly declare "the links need to show issue ref popup", but not make the popup logic try to guess and exclude. |
I'd rather have an opt-out than an opt-in. Less work overall because the majority of issue links benefit from the tooltip. |
Maybe you forgot how many bugs were caused by various global pollutions. You will introduce more global pollutions and more bugs. |



Show context popup everywhere, not just in markup. This makes them work in the repo file table, latest commit and on frontpage.
<a>width so tooltip only shows on link hover