fix(system): remediate component wrapping functionality (#9978)

Refs #9919
This commit is contained in:
Vladimír Gorej
2024-05-27 15:58:39 +02:00
committed by GitHub
parent c74fb2c69d
commit 8aa5292013

View File

@@ -322,7 +322,7 @@ function combinePlugins(plugins, toolbox) {
if(isArray(plugins)) {
return plugins
.map(plugin => combinePlugins(plugin, toolbox))
.reduce(systemExtend, { components: { ...toolbox.getComponents() } })
.reduce(systemExtend, { components: toolbox.getComponents() })
}
return {}