From 20b7afade0989f7d6aec2ea8bd70e46af05872e2 Mon Sep 17 00:00:00 2001 From: Flawid DSouza Date: Thu, 12 Dec 2024 13:57:37 +0530 Subject: [PATCH] fix(ui): File Workspaces > when you rename a folder inside a workspace and it has some tabs open from the same folder, the tabs stay open but when you go back to Workspaces and come back into the same workspace, the tabs will no longer be open --- packages/ui/src/store.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/ui/src/store.ts b/packages/ui/src/store.ts index 98333e07..5655412b 100644 --- a/packages/ui/src/store.ts +++ b/packages/ui/src/store.ts @@ -507,6 +507,7 @@ export const store = createStore({ state.tabs = [] state.activeTab = null state.plugins.workspace = [] + state.idMap = null } }, async loadWorkspacePlugins(state) {