From 5affbbc86babe8b44bbf6514d8305636a3954028 Mon Sep 17 00:00:00 2001 From: Lukas Saltenas Date: Fri, 31 Oct 2025 14:23:31 +0200 Subject: [PATCH] fix(warn-on-startup): move `jupyterViewVariables` view into the existing deepnote container --- package.json | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 98ad604b9..7b0fec287 100644 --- a/package.json +++ b/package.json @@ -2079,14 +2079,6 @@ ] }, "views": { - "jupyter-variables": [ - { - "type": "webview", - "id": "jupyterViewVariables", - "name": "Jupyter Variables", - "when": "jupyter.hasNativeNotebookOrInteractiveWindowOpen" - } - ], "deepnote": [ { "id": "deepnoteExplorer", @@ -2095,6 +2087,12 @@ "light": "./resources/light/deepnote-icon.svg", "dark": "./resources/dark/deepnote-icon.svg" } + }, + { + "type": "webview", + "id": "jupyterViewVariables", + "name": "Jupyter Variables", + "when": "jupyter.hasNativeNotebookOrInteractiveWindowOpen" } ] },