From 8aa529201395224707ab00bb4b6ce71e41d082a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Gorej?= Date: Mon, 27 May 2024 15:58:39 +0200 Subject: [PATCH] fix(system): remediate component wrapping functionality (#9978) 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 {}