We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43a06b6 commit 018a133Copy full SHA for 018a133
2 files changed
packages/ui/src/layout/MainLayout/Header/OrgWorkspaceBreadcrumbs/index.jsx
@@ -118,6 +118,9 @@ const OrgWorkspaceBreadcrumbs = () => {
118
119
const handleWorkspaceClick = (event) => {
120
setWorkspaceAnchorEl(event.currentTarget)
121
+
122
+ // Refresh workspace list when dropdown opens
123
+ getWorkspacesByUserIdApi.request(user.id)
124
}
125
126
const handleOrgClose = () => {
packages/ui/src/layout/MainLayout/Header/WorkspaceSwitcher/index.jsx
@@ -99,6 +99,9 @@ const WorkspaceSwitcher = () => {
99
100
const handleClick = (event) => {
101
setAnchorEl(event.currentTarget)
102
103
104
+ getWorkspacesByOrganizationIdUserIdApi.request(user.activeOrganizationId, user.id)
105
106
107
const handleClose = () => {
0 commit comments