diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:48:02 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:48:02 -0800 |
| commit | 9e7946ce0474fddb8901df27e5c3646fd87af67c (patch) | |
| tree | 255cf49251d238b699cb1bd62ee28c2efeddf5c0 /frontend/src/components/TagView.test.tsx | |
| parent | ea5d89b47a5424fc81e99934183c0ad7a0cf2426 (diff) | |
| download | neko-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.tsx | 2 |
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 () => { |
