feat(ui/dashboard): add collapsible navigation sidebar - #2776
Merged
Conversation
steveninhle
force-pushed
the
feat/collapsible-navigation-sidebar
branch
from
August 17, 2026 09:56
3acd5d2 to
3cc8551
Compare
steveninhle
force-pushed
the
feat/collapsible-navigation-sidebar
branch
2 times, most recently
from
August 19, 2026 02:23
a822e29 to
d82bf18
Compare
steveninhle
marked this pull request as ready for review
August 19, 2026 02:26
steveninhle
requested review from
cre8ivejp,
hvn2k1 and
t-kikuc
as code owners
August 19, 2026 02:26
There was a problem hiding this comment.
Pull request overview
Adds a persisted, collapsible dashboard sidebar with icon-only navigation, tooltips, and responsive content positioning.
Changes:
- Persists collapsed navigation state in local storage.
- Adds collapsed sidebar styling, tooltips, and translated controls.
- Repositions page content and organization switching UI.
Reviewed changes
Copilot reviewed 9 out of 10 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
ui/dashboard/src/storage/navigation.ts |
Stores collapsed state. |
ui/dashboard/src/components/navigation/switch-organization.tsx |
Adjusts switcher position. |
ui/dashboard/src/components/navigation/my-projects.tsx |
Adds collapsed environment trigger. |
ui/dashboard/src/components/navigation/menu-section.tsx |
Hides section titles when collapsed. |
ui/dashboard/src/components/navigation/menu-item.tsx |
Adds icon-only menu items and tooltips. |
ui/dashboard/src/components/navigation/index.tsx |
Implements sidebar collapse controls and layout. |
ui/dashboard/src/app/index.tsx |
Manages sidebar state and content offset. |
ui/dashboard/src/@locales/ja/common.json |
Adds Japanese control labels. |
ui/dashboard/src/@locales/en/common.json |
Adds English control labels. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+102
to
+104
| <Tooltip | ||
| asChild={false} | ||
| trigger={actionEl} |
Comment on lines
+251
to
+252
| <Icon icon={IconSystem.IconBackspace} /> | ||
| {!isCollapsed && <span>{t(`navigation.back-to-main`)}</span>} |
Comment on lines
+292
to
+296
| {!isCollapsed && ( | ||
| <span className="truncate text-ellipsis"> | ||
| {selectedEnvironment?.name} | ||
| </span> | ||
| )} |
steveninhle
force-pushed
the
feat/collapsible-navigation-sidebar
branch
from
August 21, 2026 02:37
d82bf18 to
948c98d
Compare
t-kikuc
requested changes
Aug 24, 2026
steveninhle
force-pushed
the
feat/collapsible-navigation-sidebar
branch
from
August 24, 2026 03:59
3d2b12e to
38cb07a
Compare
steveninhle
force-pushed
the
feat/collapsible-navigation-sidebar
branch
from
August 24, 2026 04:04
38cb07a to
e040923
Compare
t-kikuc
approved these changes
Aug 28, 2026
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.
Summary
This PR implements a collapsible navigation bar.
The goal is to give users more flexibility and provide more space for the main content.