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 8f91edd commit 629e634Copy full SHA for 629e634
packages/application/src/pathopener.ts
@@ -15,7 +15,7 @@ class DefaultNotebookPathOpener implements INotebookPathOpener {
15
open(options: INotebookPathOpener.IOpenOptions): WindowProxy | null {
16
const { prefix, path, searchParams, target, features } = options;
17
const url = new URL(
18
- URLExt.join(prefix, path ?? ''),
+ URLExt.join(prefix, URLExt.encodeParts(path ?? '')),
19
window.location.origin
20
);
21
if (searchParams) {
0 commit comments