diff --git a/python/jupytergis_lab/src/index.ts b/python/jupytergis_lab/src/index.ts index f12ac9067..fa8601037 100644 --- a/python/jupytergis_lab/src/index.ts +++ b/python/jupytergis_lab/src/index.ts @@ -31,7 +31,7 @@ import { IMainMenu } from '@jupyterlab/mainmenu'; import { IStateDB } from '@jupyterlab/statedb'; import { ITranslator, nullTranslator } from '@jupyterlab/translation'; import { ContextMenu, Menu } from '@lumino/widgets'; -import { notebookRenderePlugin } from './notebookrenderer'; +import { notebookRendererPlugin } from './notebookrenderer'; const NAME_SPACE = 'jupytergis'; @@ -381,4 +381,4 @@ function buildGroupsMenu( }); } -export default [plugin, controlPanel, notebookRenderePlugin]; +export default [plugin, controlPanel, notebookRendererPlugin]; diff --git a/python/jupytergis_lab/src/notebookrenderer.ts b/python/jupytergis_lab/src/notebookrenderer.ts index bd1c2a360..c1691a77c 100644 --- a/python/jupytergis_lab/src/notebookrenderer.ts +++ b/python/jupytergis_lab/src/notebookrenderer.ts @@ -51,7 +51,7 @@ export class YJupyterGISLuminoWidget extends Panel { private _jgisWidget: JupyterGISPanel; } -export const notebookRenderePlugin: JupyterFrontEndPlugin = { +export const notebookRendererPlugin: JupyterFrontEndPlugin = { id: 'jupytergis:yjswidget-plugin', autoStart: true, optional: [IJupyterYWidgetManager, ICollaborativeDrive],