Skip to content

Commit

Permalink
Adopt new Jupyter API (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Sep 20, 2023
1 parent 4ab1482 commit a78f29f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"@typescript-eslint/eslint-plugin-tslint": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"@vscode/dts": "^0.4.0",
"@vscode/jupyter-extension": "^0.0.3",
"@vscode/jupyter-extension": "^0.0.5",
"@vscode/test-electron": "^2.3.4",
"@vscode/test-web": "^0.0.29",
"chai": "^4.3.8",
Expand Down
2 changes: 1 addition & 1 deletion src/jupyterIntegration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class JupyterServerIntegration implements JupyterServerProvider, JupyterS
const label = Localized.connectToToTheJupyterServer(url);
return [{ label, url } as JupyterServerCommand];
}
return [{ label: Localized.labelOfCommandToEnterUrl }];
return [{ label: Localized.labelOfCommandToEnterUrl, picked: true }];
}
async removeJupyterServer?(server: JupyterServer): Promise<void> {
const tokenSource = new CancellationTokenSource();
Expand Down

0 comments on commit a78f29f

Please sign in to comment.