Skip to content

Commit

Permalink
fix: fix the problem caused by the default metadataTransducer registr…
Browse files Browse the repository at this point in the history
…ation timing being too late
  • Loading branch information
liujuping authored and JackLian committed Feb 1, 2023
1 parent 810ccbd commit a42f538
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 @@ -66,7 +66,7 @@ async function registryInnerPlugin(designer: Designer, editor: Editor, plugins:
await plugins.register(setterRegistry, {}, { autoInit: true });
await plugins.register(defaultPanelRegistry(editor));
await plugins.register(builtinHotkey);
await plugins.register(registerDefaults);
await plugins.register(registerDefaults, {}, { autoInit: true });
}

const innerWorkspace = new InnerWorkspace(registryInnerPlugin, shellModelFactory);
Expand Down

0 comments on commit a42f538

Please sign in to comment.