diff --git a/web/app/components/comment/comment.jsx b/web/app/components/comment/comment.jsx index b36a3619..2b7e0b69 100644 --- a/web/app/components/comment/comment.jsx +++ b/web/app/components/comment/comment.jsx @@ -284,6 +284,5 @@ function getTextSnippet(html) { const result = tmp.innerText || ''; const snippet = result.substr(0, LENGTH); - console.log(snippet) return (snippet.length === LENGTH && result.length !== LENGTH) ? `${snippet}...` : snippet; }