Use full component names for custom components in client library
This commit is contained in:
parent
144dec50ea
commit
dff1cec9e0
|
@ -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,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue