Increase limit for displaying show more/less link

- the limit was too short because of the html saved for mentions and
link
This commit is contained in:
mattwr18 2019-09-21 10:45:55 +02:00
parent ede9dc0d76
commit 7fe1d39303

View File

@ -40,12 +40,12 @@
</div>
<div v-show="!openEditCommentMenu">
<content-viewer
v-if="comment.content.length < 180"
v-if="comment.content.length < 400"
:content="comment.content"
class="padding-left"
/>
<div
v-show="comment.content !== comment.contentExcerpt && comment.content.length > 180"
v-show="comment.content !== comment.contentExcerpt && comment.content.length > 400"
class="show-more-or-less-div"
>
<content-viewer