diff --git a/packages/node_modules/@node-red/editor-client/src/js/red.js b/packages/node_modules/@node-red/editor-client/src/js/red.js index 2b1c8f2e4..afcdbdb1a 100644 --- a/packages/node_modules/@node-red/editor-client/src/js/red.js +++ b/packages/node_modules/@node-red/editor-client/src/js/red.js @@ -252,8 +252,21 @@ var RED = (function() { if (/^#flow\/.+$/.test(currentHash)) { RED.workspaces.show(currentHash.substring(6),true); } - if (RED.workspaces.active() === 0 && RED.workspaces.count() > 0) { - RED.workspaces.show(RED.nodes.getWorkspaceOrder()[0]) + if (RED.workspaces.count() > 0) { + const hiddenTabs = JSON.parse(RED.settings.getLocal("hiddenTabs")||"{}"); + const workspaces = RED.nodes.getWorkspaceOrder(); + if (RED.workspaces.active() === 0) { + for (let index = 0; index < workspaces.length; index++) { + const ws = workspaces[index]; + if (!hiddenTabs[ws]) { + RED.workspaces.show(ws); + break; + } + } + } + if (RED.workspaces.active() === 0) { + RED.workspaces.show(workspaces[0]); + } } } catch(err) { console.warn(err);