crmSelect2 - fix whitespace in tooltip
authorColeman Watts <coleman@civicrm.org>
Tue, 11 Feb 2020 22:06:21 +0000 (17:06 -0500)
committerColeman Watts <coleman@civicrm.org>
Tue, 11 Feb 2020 22:06:21 +0000 (17:06 -0500)
js/Common.js

index 02f976c3a339791ddc5e2296b483a68ebd1a6c0d..fca7ef9abc4fde8262eb39c3852b0bbd35bee783 100644 (file)
@@ -679,7 +679,7 @@ if (!CRM.vars) CRM.vars = {};
       '</div>' +
       '<div class="crm-select2-row-description">';
     $.each(row.description || [], function(k, text) {
-      markup += '<p>' + _.escape(text) + '</p>';
+      markup += '<p>' + _.escape(text) + '</p> ';
     });
     markup += '</div></div></div>';
     return markup;