From 3eb539fdfced30142a2f9c5e2478c3fe13ecb43c Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Tue, 11 Feb 2020 17:06:21 -0500 Subject: [PATCH] crmSelect2 - fix whitespace in tooltip --- js/Common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/Common.js b/js/Common.js index 02f976c3a3..fca7ef9abc 100644 --- a/js/Common.js +++ b/js/Common.js @@ -679,7 +679,7 @@ if (!CRM.vars) CRM.vars = {}; '' + '
'; $.each(row.description || [], function(k, text) { - markup += '

' + _.escape(text) + '

'; + markup += '

' + _.escape(text) + '

'; }); markup += '
'; return markup; -- 2.25.1