feat(ui): add View all links to dashboard activity and tasks sections#1899
feat(ui): add View all links to dashboard activity and tasks sections#1899bluzername wants to merge 1 commit intopaperclipai:masterfrom
Conversation
The dashboard show "Recent Activity" and "Recent Tasks" sections with only the latest few items. But there was no way to navigate to the full list from there. User had to manually click on Activity or Issues in the sidebar to see everything. Added small "View all" links next to each section header: - Recent Activity -> links to /activity page - Recent Tasks -> links to /issues page The links use muted text color with hover transition so they don't compete visually with the section content but are easy to find when you need them.
Greptile SummaryThis PR adds "View all" links to the Recent Activity and Recent Tasks section headers on the Dashboard page, linking to PR description feedback:
Confidence Score: 5/5Safe to merge — the code change is minimal, correct, and introduces no logic or routing issues. The implementation is straightforward: it reuses the already-imported custom Link component, targets valid registered routes, and the styling is consistent with the rest of the UI. No P0 or P1 findings. The only feedback is about the PR description (missing thinking path, risks, and screenshots) which is a process concern, not a code defect. No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "feat(ui): add "View all" links to dashbo..." | Re-trigger Greptile |
Thinking Path
Problem
The Dashboard page show two summary sections: "Recent Activity" and "Recent Tasks". Both display only the latest few items but there was no link to navigate to the full list. If I want to see all activity or all issues, I have to know that I need to click on "Activity" or "Issues" in the sidebar navigation.
This is a very standard UX pattern that almost every dashboard in every app have - a "View all" or "See more" link next to each summary section header. But it was missing here.
What I changed
Added "View all" links to both section headers:
/activity/issuesThe links use
text-muted-foregroundcolor with hover transition totext-foreground, so they don't distract from the dashboard content but are clearly visible when you look for them. Positioned on the right side of the header withjustify-between.How to test
1 file, 12 lines added / 6 removed.