diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/DashboardWidgets/News.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/DashboardWidgets/News.vue index 366dfa329..208025983 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/DashboardWidgets/News.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/HomepageWidget/DashboardWidgets/News.vue @@ -62,10 +62,7 @@ const truncateContent = (content, maxLength = 100) => { const convertMarkdownToHtml = (markdown) => { const rawHtml = marked(markdown); - return rawHtml; -/* console.log('rawhtml', rawHtml) - console.log('sanitized', DOMPurify.sanitize(rawHtml)) - return DOMPurify.sanitize(rawHtml)*/ + return DOMPurify.sanitize(rawHtml) }; const truncateMarkdownContent = (content, maxLength = 100) => {