diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-15 17:50:41 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-15 17:50:41 +0900 |
| commit | 7ff02cd24054ba6a629478cb20f565c7c6c76fbd (patch) | |
| tree | dd9de81711be20d682f94bed2dda8872d8d2bca4 /frontend/src/pages/ReadArticles.tsx | |
| parent | 6ec39d10d3f0f9f6df549208e4dcd6f30808e21b (diff) | |
| download | feedaka-0.7.2.tar.gz feedaka-0.7.2.tar.zst feedaka-0.7.2.zip | |
feat(frontend): filter feed sidebar by read/unread viewv0.7.2
Unread sidebar now only shows feeds with unread articles.
Read sidebar shows all feeds but hides the unread count badge.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'frontend/src/pages/ReadArticles.tsx')
| -rw-r--r-- | frontend/src/pages/ReadArticles.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/pages/ReadArticles.tsx b/frontend/src/pages/ReadArticles.tsx index e231906..57fbc9a 100644 --- a/frontend/src/pages/ReadArticles.tsx +++ b/frontend/src/pages/ReadArticles.tsx @@ -28,7 +28,7 @@ export function ReadArticles() { <div className="flex gap-8"> <ErrorBoundary> <Suspense fallback={<LoadingSpinner />}> - <FeedSidebar basePath="/read" /> + <FeedSidebar basePath="/read" isReadView /> </Suspense> </ErrorBoundary> <div className="min-w-0 flex-1"> |
