diff --git a/src/extensions/stores/workspace-store.ts b/src/extensions/stores/workspace-store.ts index f8ad49fec1..dd5f8c9ebd 100644 --- a/src/extensions/stores/workspace-store.ts +++ b/src/extensions/stores/workspace-store.ts @@ -21,6 +21,13 @@ export class WorkspaceStore extends Singleton { return internalWorkspaceStore.currentWorkspaceId; } + /** + * Set active workspace id + */ + set currentWorkspaceId(id: string) { + internalWorkspaceStore.currentWorkspaceId = id; + } + /** * Map of all workspaces */