Skip to content

Commit

Permalink
Update Jupytext Notebook url path (#6961)
Browse files Browse the repository at this point in the history
* update Jupytext Notebook url path

* update widget name check
  • Loading branch information
RRosio committed Jul 18, 2023
1 parent 06c4db7 commit 34ca875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docmanager-extension/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const opener: JupyterFrontEndPlugin<IDocumentWidgetOpener> = {
let route = 'edit';
if (
(widgetName === 'default' && ext === '.ipynb') ||
widgetName === 'Notebook'
widgetName.includes('Notebook')
) {
route = 'notebooks';
}
Expand Down

0 comments on commit 34ca875

Please sign in to comment.