Skip to content

Commit

Permalink
fix(system): remediate component wrapping functionality
Browse files Browse the repository at this point in the history
Refs #9919
  • Loading branch information
char0n committed May 27, 2024
1 parent 31b35fd commit 159f4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/system.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {}
Expand Down

0 comments on commit 159f4f7

Please sign in to comment.