From 159f4f7d266d9035fa2621d4021b0044b0fc3421 Mon Sep 17 00:00:00 2001 From: Vladimir Gorej Date: Mon, 27 May 2024 15:50:11 +0200 Subject: [PATCH] fix(system): remediate component wrapping functionality Refs #9919 --- src/core/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.js b/src/core/system.js index 051196e966d..deafe0e3dfa 100644 --- a/src/core/system.js +++ b/src/core/system.js @@ -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 {}