Skip to content

Commit

Permalink
fix(outline): fix view change bugs in workspace mode
Browse files Browse the repository at this point in the history
  • Loading branch information
liujuping committed Dec 13, 2023
1 parent 271aef4 commit b485a4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish engine beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Get version
id: get_version
run: echo "::set-output name=version::$(node -p "require('./docs/package.json').version")"
run: echo "::set-output name=version::$(node -p "require('./package.json').version")"
2 changes: 1 addition & 1 deletion .github/workflows/publish engine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Get version
id: get_version
run: echo "::set-output name=version::$(node -p "require('./docs/package.json').version")"
run: echo "::set-output name=version::$(node -p "require('./package.json').version")"
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export class TreeMaster {
windowViewTypeChangeEvent();

workspace.onChangeActiveWindow(() => {
windowViewTypeChangeEvent();
this.setPluginContext(workspace.window?.currentEditorView);
dispose && dispose();
windowViewTypeChangeEvent();
});
}
}
Expand Down

0 comments on commit b485a4d

Please sign in to comment.