Merge pull request #4030 from node-red-hitachi/disable-delete-tab-menu-when-single-tab-exists

Disable delete tab menu when single tab exists
This commit is contained in:
Nick O'Leary 2023-01-30 09:38:16 +00:00 committed by GitHub
commit c42c6a7b08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -266,7 +266,8 @@ RED.workspaces = (function() {
} else if (tab.type === 'subflow') {
RED.subflow.delete(tab.id)
}
}
},
disabled: (workspaceTabCount === 1)
},
{
label: RED._("menu.label.export"),