File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ jobs:
33
33
- name : Install dependencies
34
34
run : pip install jupyterlab==3.1.0-alpha.10
35
35
36
- - name : Install filetree
36
+ - name : Install jupyterlab-unfold
37
37
run : pip install .
38
38
39
39
- name : Check installation files
40
40
run : |
41
- test -d $CONDA_PREFIX/share/jupyter/labextensions/jupyterlab-filetree
42
- test -f $CONDA_PREFIX/share/jupyter/labextensions/jupyterlab-filetree /package.json
41
+ test -d $CONDA_PREFIX/share/jupyter/labextensions/jupyterlab-unfold
42
+ test -f $CONDA_PREFIX/share/jupyter/labextensions/jupyterlab-unfold /package.json
43
43
44
44
- name : Lint check
45
45
run : |
Original file line number Diff line number Diff line change
1
+ name : jupyterlab-unfold
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - yarn
6
+ - jupyter-packaging
Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ const EXTENSION_ID = 'jupyterlab-unfold';
27
27
*/
28
28
const namespace = 'filebrowser' ;
29
29
30
-
31
30
const extension : JupyterFrontEndPlugin < IFileBrowserFactory > = {
32
31
id : EXTENSION_ID ,
33
32
provides : IFileBrowserFactory ,
Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ export class FilterFileTreeBrowserModel extends FilterFileBrowserModel {
437
437
private _isRestored = new PromiseDelegate < void > ( ) ;
438
438
private _savedState : IStateDB | null = null ;
439
439
private _stateKey : string | null = null ;
440
- private _path : string = '.' ;
440
+ private _path = '.' ;
441
441
private basePath : string ;
442
442
private contentManager : ContentsManager ;
443
443
private app : JupyterFrontEnd ;
You can’t perform that action at this time.
0 commit comments