From dff1cec9e0fbe08ce69bb797bb395a73ca432a4b Mon Sep 17 00:00:00 2001 From: Andrew Kingston Date: Thu, 11 Aug 2022 15:27:51 +0100 Subject: [PATCH] Use full component names for custom components in client library --- packages/client/src/stores/components.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/client/src/stores/components.js b/packages/client/src/stores/components.js index 2500ea2a41..a07c9da996 100644 --- a/packages/client/src/stores/components.js +++ b/packages/client/src/stores/components.js @@ -121,7 +121,8 @@ const createComponentStore = () => { if (!state.customComponentManifest) { state.customComponentManifest = {} } - state.customComponentManifest[schema.schema.name] = { + const componentName = `plugin/${schema.schema.name}/1.0.0` + state.customComponentManifest[componentName] = { schema, Component, }