Browse Source

Merge pull request #6485 from cquah/issue-6482

Rename 'Close Other Tabs' command item to 'Close All Other Tabs'.
Steven Silvester 6 years ago
parent
commit
b1f6568874
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/application-extension/src/index.tsx

+ 1 - 1
packages/application-extension/src/index.tsx

@@ -564,7 +564,7 @@ function addCommands(app: JupyterLab, palette: ICommandPalette): void {
   palette.addItem({ command: CommandIDs.closeAll, category });
 
   commands.addCommand(CommandIDs.closeOtherTabs, {
-    label: () => `Close Other Tabs`,
+    label: () => `Close All Other Tabs`,
     isEnabled: () => {
       // Ensure there are at least two widgets.
       const iterator = shell.widgets('main');