1
0
Fork 0
mirror of synced 2024-09-14 00:08:25 +12:00

Use full component names for custom components in client library

This commit is contained in:
Andrew Kingston 2022-08-11 15:27:51 +01:00
parent 152e8271da
commit f00d860d9c

View file

@ -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,
}