Skip to content

Commit 69c1259

Browse files
committed
More fixes
1 parent e143542 commit 69c1259

File tree

5 files changed

+704
-585
lines changed

5 files changed

+704
-585
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,6 @@ ui-tests/playwright-report
126126

127127
# VSCode
128128
.vscode
129+
130+
# RTC
131+
.jupyter_ystore.db

app/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@
119119
"@jupyterlab/cell-toolbar-extension": "^4.0.0-alpha.15",
120120
"@jupyterlab/celltags": "^4.0.0-alpha.15",
121121
"@jupyterlab/celltags-extension": "^4.0.0-alpha.15",
122+
"@jupyterlab/codemirror": "^4.0.0-alpha.15",
122123
"@jupyterlab/codemirror-extension": "^4.0.0-alpha.15",
123124
"@jupyterlab/collaboration-extension": "^4.0.0-alpha.15",
124125
"@jupyterlab/completer-extension": "^4.0.0-alpha.15",
@@ -215,6 +216,7 @@
215216
"@jupyterlab/cell-toolbar",
216217
"@jupyterlab/celltags",
217218
"@jupyterlab/codeeditor",
219+
"@jupyterlab/codemirror",
218220
"@jupyterlab/collaboration",
219221
"@jupyterlab/completer",
220222
"@jupyterlab/console",

packages/application-extension/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
"@jupyterlab/apputils": "^4.0.0-alpha.15",
4646
"@jupyterlab/celltags": "^4.0.0-alpha.15",
4747
"@jupyterlab/codeeditor": "^4.0.0-alpha.15",
48-
"@jupyterlab/codemirror": "^4.0.0-alpha.15",
4948
"@jupyterlab/console": "^4.0.0-alpha.15",
5049
"@jupyterlab/coreutils": "^6.0.0-alpha.15",
5150
"@jupyterlab/docmanager": "^4.0.0-alpha.15",

packages/docmanager-extension/src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ const opener: JupyterFrontEndPlugin<IDocumentWidgetOpener> = {
4646
url = `${url}?factory=${widgetName}`;
4747
}
4848
window.open(url);
49+
// dispose the widget since it is not used on this page
50+
widget.dispose();
4951
return;
5052
}
5153

0 commit comments

Comments
 (0)