Skip to content

Commit

Permalink
fix(facade): render refresh after extension dispose
Browse files Browse the repository at this point in the history
  • Loading branch information
Dushusir committed Mar 4, 2024
1 parent c74ad69 commit 063cca0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/facade/src/apis/facade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export class FUniver {

return toDisposable(() => {
sheetComponent.unRegister(...extensions.map((ext) => ext.uKey));
sheetComponent.makeDirty(true);
});
}

Expand All @@ -141,6 +142,7 @@ export class FUniver {

return toDisposable(() => {
sheetComponent.unRegister(...extensions.map((ext) => ext.uKey));
sheetComponent.makeDirty(true);
});
}

Expand All @@ -155,6 +157,7 @@ export class FUniver {

return toDisposable(() => {
sheetComponent.unRegister(...extensions.map((ext) => ext.uKey));
sheetComponent.makeDirty(true);
});
}

Expand Down

0 comments on commit 063cca0

Please sign in to comment.