Currently, users cannot open topics in new tabs because the application uses onClick handlers instead of proper HTML <a> tags to navigate to https://example.com/topics/<topic-id>.
This prevents standard browser interactions like middle-click, right-click → "Open in new tab", or Ctrl/Cmd + Click.
Proposed solution:
Replace onClick handlers with <a> tags.
Benefits:
- Users can browse the topic list and open multiple interesting topics in background tabs for comparison
- Enables standard browser navigation without losing their place in the list
- Improves accessibility (screen readers can properly identify links)
- Better semantic HTML
Thank you for your work! :)
Currently, users cannot open topics in new tabs because the application uses
onClickhandlers instead of proper HTML<a>tags to navigate tohttps://example.com/topics/<topic-id>.This prevents standard browser interactions like middle-click, right-click → "Open in new tab", or Ctrl/Cmd + Click.
Proposed solution:
Replace
onClickhandlers with<a>tags.Benefits:
Thank you for your work! :)