fix: fix the problem that the default setter is not registered successfully

This commit is contained in:
liujuping 2023-02-14 12:07:11 +08:00 committed by 林熠
parent aa7287842b
commit 2f69837002

View File

@ -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 });