We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f579c9b commit c0d8073Copy full SHA for c0d8073
kernel/src/index.ts
@@ -43,7 +43,7 @@ const kernelPlugin: JupyterLiteServerPlugin<void> = {
43
const serviceContainer = new ServiceContainer()
44
await serviceContainer.init();
45
46
- const welcomePanel = new WelcomePanel();
+ const welcomePanel = new WelcomePanel(serviceContainer);
47
document.body.appendChild(welcomePanel.getElement());
48
const kernel = new EmbeddedKernel(options, serviceContainer);
49
0 commit comments