mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-29 06:07:11 +02:00
feat: surface git context in sidebar and chat header
- Add GitContextBadge to sidebar ProjectGroup showing branch name, dirty indicator, and ahead/behind counts for real projects - Show git-missing and error states with subtle warning badges - Add hover-reveal refresh button per project to re-scan git status - Show branch/dirty/ahead/behind inline in ChatPane header subtitle - Wire refreshProjectGitContext callback from App through Sidebar Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -265,6 +265,9 @@ export default function App() {
|
||||
onSetSessionArchived={(sessionId, isArchived) => {
|
||||
void api.setSessionArchived({ sessionId, isArchived });
|
||||
}}
|
||||
onRefreshGitContext={(projectId) => {
|
||||
void api.refreshProjectGitContext(projectId);
|
||||
}}
|
||||
workspace={workspace}
|
||||
/>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user