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 f157a79 commit a7e2dc1Copy full SHA for a7e2dc1
.github/workflows/deploy.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ - feature/save_button
8
pull_request:
9
10
- '*'
kernel/src/index.ts
@@ -14,7 +14,7 @@ var devService: DeviceService | null = null;
14
let notebookTracker: INotebookTracker | null = null;
15
16
// Frontend plugin to capture the notebook tracker
17
-const frontendPlugin: JupyterFrontEndPlugin<void> = {
+const frontendPlugin: JupyterFrontEndPlugin<void, INotebookTracker> = {
18
id: 'jupyterlite-embedded-kernel:frontend',
19
autoStart: true,
20
requires: [INotebookTracker],
0 commit comments