From b3b90b74f9efaf44270bb571ca1a0ad5531fe8c2 Mon Sep 17 00:00:00 2001 From: Dmitry-Ilyushechkin Date: Tue, 18 Nov 2025 13:51:11 +0300 Subject: [PATCH] fix bug 77633 --- apps/common/main/lib/view/Plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/Plugins.js b/apps/common/main/lib/view/Plugins.js index b6b71bb5e2..16ec584fe2 100644 --- a/apps/common/main/lib/view/Plugins.js +++ b/apps/common/main/lib/view/Plugins.js @@ -320,7 +320,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: icon_cls, iconsSet: this.iconsStr2IconsObj(icons), - baseUrl: model.get('baseUrl'), // icons have a relative path, so need to use the base url + baseUrl: model.get('baseUrl').replace(/\(/g, '%28').replace(/\)/g, '%29'), // icons have a relative path, so need to use the base url caption: Common.Utils.String.htmlEncode(model.get('name')), menu: _menu_items.length > 1, split: _menu_items.length > 1,