Browse Source

Add icon to Create Console for Editor

Jeremy Tuloup 4 years ago
parent
commit
f7a8d517e8
1 changed files with 3 additions and 1 deletions
  1. 3 1
      packages/fileeditor-extension/src/commands.ts

+ 3 - 1
packages/fileeditor-extension/src/commands.ts

@@ -38,8 +38,9 @@ import {
 import { ISettingRegistry } from '@jupyterlab/settingregistry';
 
 import {
-  cutIcon,
+  consoleIcon,
   copyIcon,
+  cutIcon,
   markdownIcon,
   pasteIcon,
   redoIcon,
@@ -443,6 +444,7 @@ export namespace Commands {
         return getCreateConsoleFunction(commands)(widget, args);
       },
       isEnabled,
+      icon: consoleIcon,
       label: trans.__('Create Console for Editor')
     });
   }