瀏覽代碼

Kernel info `help_links` are optional, cf. http://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info

Afshin Darian 7 年之前
父節點
當前提交
13d9d55df5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/help-extension/src/index.ts

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

@@ -286,7 +286,7 @@ function activate(app: JupyterLab, mainMenu: IMainMenu, palette: ICommandPalette
 
         // Add the kernel info help_links to the Help menu.
         const kernelGroup: Menu.IItemOptions[] = [];
-        session.kernel.info.help_links.forEach((link) => {
+        (session.kernel.info.help_links || []).forEach((link) => {
           const commandId = `help-menu-${name}:${link.text}`;
           commands.addCommand(commandId, {
             label: link.text,