From 495257797b47dd29d55a63461531644632722eb8 Mon Sep 17 00:00:00 2001 From: ufundo Date: Tue, 30 Jul 2024 14:38:47 +0100 Subject: [PATCH] Add crm-i icon namespace class to font picker icon display --- js/jquery/jquery.crmIconPicker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery/jquery.crmIconPicker.js b/js/jquery/jquery.crmIconPicker.js index e1526e290703..9f7b70d2809b 100644 --- a/js/jquery/jquery.crmIconPicker.js +++ b/js/jquery/jquery.crmIconPicker.js @@ -72,7 +72,7 @@ $.each(icons, function(i, icon) { if (!term.length || icon.replace(/-/g, '').indexOf(term) > -1) { var item = $('').button({ - icons: {primary: icon + ' ' + $style.val()} + icons: {primary: 'crm-i ' + icon + ' ' + $style.val()} }); $place.append(item); }