Skip to content

Commit

Permalink
fix(workspace): fix workspace.plugins.xxx api is invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
liujuping committed Jan 30, 2024
1 parent 557a462 commit e6c9bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shell/src/api/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class Workspace implements IPublicApiWorkspace {
}

get plugins() {
return new Plugins(this[workspaceSymbol].plugins, true);
return new Plugins(this[workspaceSymbol].plugins, true).toProxy();
}

get skeleton() {
Expand Down

0 comments on commit e6c9bfa

Please sign in to comment.