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 3e9845d commit 8476a94Copy full SHA for 8476a94
src/index.ts
@@ -61,7 +61,10 @@ const gitPullerExtension: JupyterFrontEndPlugin<void> = {
61
62
let puller: GitPuller | null = null;
63
64
- const basePath = PathExt.join(defaultFileBrowser.model.path, PathExt.basename(repo));
+ const basePath = PathExt.join(
65
+ defaultFileBrowser.model.path,
66
+ PathExt.basename(repo)
67
+ );
68
const branch = urlParams.get('branch') || 'main';
69
const provider = urlParams.get('provider') || 'github';
70
let filePath = urlParams.get('urlpath');
0 commit comments