Steven Silvester 7 лет назад
Родитель
Сommit
832b279fbd
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      packages/filebrowser-extension/src/index.ts
  2. 1 1
      packages/launcher/src/index.ts

+ 1 - 1
packages/filebrowser-extension/src/index.ts

@@ -146,7 +146,7 @@ function activateFactory(app: JupyterLab, docManager: IDocumentManager, state: I
       let launcher = new ToolbarButton({
         className: 'jp-AddIcon',
         onClick: () => {
-          return commands.execute('launcher-jupyterlab:create', {
+          return commands.execute('launcher:create', {
             cwd: widget.model.path
           });
         }

+ 1 - 1
packages/launcher/src/index.ts

@@ -37,7 +37,7 @@ import '../style/index.css';
 export
 namespace CommandIDs {
   export
-  const show: string = 'launcher-jupyterlab:show';
+  const show: string = 'launcher:show';
 };