diff --git a/src/components/Portal/noteComment.vue b/src/components/Portal/noteComment.vue index ec0cc4fb..97195d2b 100644 --- a/src/components/Portal/noteComment.vue +++ b/src/components/Portal/noteComment.vue @@ -457,8 +457,8 @@ let content = ''; content = item.content.replace(/(\n){2,}/,'
'); item.content = content; - if(!item.isAll && item.content && item.content.length > 170) { - return item.content.slice(0, 170) + "..."; + if(!item.isAll && item.content && item.content.length > 150) { + return item.content.slice(0, 150) + "..."; } return item.content; },