Skip to content

Commit

Permalink
fix: fix the problem that the default setter is not registered succes…
Browse files Browse the repository at this point in the history
…sfully
  • Loading branch information
liujuping authored and JackLian committed Feb 14, 2023
1 parent aa72878 commit 2f69837
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/engine/src/engine-core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ async function registryInnerPlugin(designer: Designer, editor: Editor, plugins:
// 注册一批内置插件
await plugins.register(OutlinePlugin, {}, { autoInit: true });
await plugins.register(componentMetaParser(designer));
await plugins.register(setterRegistry, {}, { autoInit: true });
await plugins.register(setterRegistry, {});
await plugins.register(defaultPanelRegistry(editor));
await plugins.register(builtinHotkey);
await plugins.register(registerDefaults, {}, { autoInit: true });
Expand Down

0 comments on commit 2f69837

Please sign in to comment.