aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/TagView.test.tsx
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-15 08:48:02 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-15 08:48:02 -0800
commit9e7946ce0474fddb8901df27e5c3646fd87af67c (patch)
tree255cf49251d238b699cb1bd62ee28c2efeddf5c0 /frontend/src/components/TagView.test.tsx
parentea5d89b47a5424fc81e99934183c0ad7a0cf2426 (diff)
downloadneko-9e7946ce0474fddb8901df27e5c3646fd87af67c.tar.gz
neko-9e7946ce0474fddb8901df27e5c3646fd87af67c.tar.bz2
neko-9e7946ce0474fddb8901df27e5c3646fd87af67c.zip
Make sidebar filters additive by preserving context in links
Diffstat (limited to 'frontend/src/components/TagView.test.tsx')
-rw-r--r--frontend/src/components/TagView.test.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/TagView.test.tsx b/frontend/src/components/TagView.test.tsx
index 16fdee7..de0a318 100644
--- a/frontend/src/components/TagView.test.tsx
+++ b/frontend/src/components/TagView.test.tsx
@@ -53,7 +53,7 @@ describe('Tag View Integration', () => {
// Verify structure
const techTag = screen.getByText('News').closest('a');
- expect(techTag).toHaveAttribute('href', '/tag/News');
+ expect(techTag).toHaveAttribute('href', '/tag/News?filter=unread');
});
it('fetches items by tag in FeedItems', async () => {