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 authored and JackLian committed Dec 13, 2023
1 parent 271aef4 commit a25aad4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish engine beta.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update and Publish Docs
name: Publish Engine Beta

on:
push:
Expand Down 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")"
4 changes: 2 additions & 2 deletions .github/workflows/publish engine.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update and Publish Docs
name: Publish Engine

on:
workflow_dispatch:
Expand All @@ -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 a25aad4

Please sign in to comment.