Skip to content

Commit 8b4bc49

Browse files
authored
Merge pull request #2 from martinRenou/fix_actions
Fix actions
2 parents e677f47 + 24fe4ea commit 8b4bc49

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ jobs:
3333
- name: Install dependencies
3434
run: pip install jupyterlab==3.1.0-alpha.10
3535

36-
- name: Install filetree
36+
- name: Install jupyterlab-unfold
3737
run: pip install .
3838

3939
- name: Check installation files
4040
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
4343
4444
- name: Lint check
4545
run: |

environment.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
name: jupyterlab-unfold
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- yarn
6+
- jupyter-packaging

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const EXTENSION_ID = 'jupyterlab-unfold';
2727
*/
2828
const namespace = 'filebrowser';
2929

30-
3130
const extension: JupyterFrontEndPlugin<IFileBrowserFactory> = {
3231
id: EXTENSION_ID,
3332
provides: IFileBrowserFactory,

src/unfold.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ export class FilterFileTreeBrowserModel extends FilterFileBrowserModel {
437437
private _isRestored = new PromiseDelegate<void>();
438438
private _savedState: IStateDB | null = null;
439439
private _stateKey: string | null = null;
440-
private _path: string = '.';
440+
private _path = '.';
441441
private basePath: string;
442442
private contentManager: ContentsManager;
443443
private app: JupyterFrontEnd;

0 commit comments

Comments
 (0)