From 93d4aaefa1b0c2bbc5722e3c14508e45a93b1a09 Mon Sep 17 00:00:00 2001 From: AlexeyMatveev686 Date: Wed, 27 Dec 2023 19:01:22 +0300 Subject: [PATCH] [plugins] Fix problem with plugins icons in IE. --- apps/common/main/lib/view/Plugins.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index c49a40450a..fe21af4501 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -301,7 +301,9 @@ define([ let paramName = bHasName ? 'theme' : 'style'; if (arrThemes.length) { for (let thInd = 0; thInd < arrThemes.length; thInd++) { - result.push({[paramName]: arrThemes[thInd]}); + let obj = {}; + obj[paramName] = arrThemes[thInd]; + result.push(obj); } } else { result.push({});