UI polish and bug fixes for the desktop app#51
Merged
amandal0903 merged 3 commits intomainfrom Apr 1, 2026
Merged
Conversation
added 3 commits
April 1, 2026 12:39
…t icon - Replace "+ Add Repository" footer with sticky "Projects" header bar and add icon in the orchestrator sidebar - Hide auxiliary bar composite title by setting hasTitle: false - Hide status bar by default (workbench.statusBar.visible = false) - Remove ChatStatusBarEntry (copilot icon) from status bar
- Fix WORKSTREAMS_WORKTREE_PATH visible export in terminals by setting it via shellLaunchConfig.env instead of sendText - Add click handler on offline comment tree items to open diff editor at the commented line - Remove unused ChatStatusBarEntry import
amandal0903
added a commit
that referenced
this pull request
Apr 3, 2026
* fix: default color theme to Dark Modern * feat: streamline UI — Projects header, hide status bar, remove copilot icon - Replace "+ Add Repository" footer with sticky "Projects" header bar and add icon in the orchestrator sidebar - Hide auxiliary bar composite title by setting hasTitle: false - Hide status bar by default (workbench.statusBar.visible = false) - Remove ChatStatusBarEntry (copilot icon) from status bar * fix: env var injection and comment click-to-navigate - Fix WORKSTREAMS_WORKTREE_PATH visible export in terminals by setting it via shellLaunchConfig.env instead of sendText - Add click handler on offline comment tree items to open diff editor at the commented line - Remove unused ChatStatusBarEntry import
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
UI polish and bug fixes for the desktop app:
hasTitle: false)export WORKSTREAMS_WORKTREE_PATH=...command appearing in terminalsWhy
The default UI had unnecessary chrome (status bar, Copilot icon, "ORCHESTRATOR" heading) that cluttered the workflow. The env var injection via
sendTextwas visibly printing export commands in terminals on every worktree switch. Offline comments in the SCM panel were not clickable.