diff --git a/app/assets/javascripts/discourse/views/combobox_view_category.js b/app/assets/javascripts/discourse/views/combobox_view_category.js index a4e95da73..eea7101a8 100644 --- a/app/assets/javascripts/discourse/views/combobox_view_category.js +++ b/app/assets/javascripts/discourse/views/combobox_view_category.js @@ -19,7 +19,7 @@ Discourse.ComboboxViewCategory = Discourse.ComboboxView.extend({ templateData.text_color + ";'>" + templateData.name + ""; result += " × " + templateData.topic_count + ""; if (templateData.description && templateData.description !== 'null') { - result += '
' + Handlebars.Utils.escapeExpression(templateData.description.substr(0,200)) + (templateData.description.length > 200 ? '…' : '') + '
'; + result += '
' + templateData.description.substr(0,200) + (templateData.description.length > 200 ? '…' : '') + '
'; } return result; }