Fixes new lines not being displayed in comments (#1719)
This commit is contained in:
parent
94756458b1
commit
c14aeab8ef
|
@ -50,6 +50,7 @@
|
|||
}
|
||||
|
||||
.commentText {
|
||||
white-space: pre-wrap;
|
||||
font-size: 14px;
|
||||
margin-top: -10px;
|
||||
margin-left: 70px;
|
||||
|
|
|
@ -264,7 +264,7 @@ export default Vue.extend({
|
|||
if (this.hideCommentLikes) {
|
||||
comment.likes = null
|
||||
}
|
||||
comment.text = autolinker.link(comment.text.replace(/(<([^>]+)>)/ig, ''))
|
||||
comment.text = autolinker.link(comment.text.replace(/(<(?!br>)([^>]+)>)/ig, ''))
|
||||
|
||||
return comment
|
||||
})
|
||||
|
@ -296,7 +296,7 @@ export default Vue.extend({
|
|||
} else {
|
||||
comment.likes = comment.likeCount
|
||||
}
|
||||
comment.text = autolinker.link(comment.content.replace(/(<([^>]+)>)/ig, ''))
|
||||
comment.text = autolinker.link(comment.content.replace(/(<(?!br>)([^>]+)>)/ig, ''))
|
||||
comment.dataType = 'invidious'
|
||||
|
||||
if (typeof (comment.replies) !== 'undefined' && typeof (comment.replies.replyCount) !== 'undefined') {
|
||||
|
@ -362,7 +362,7 @@ export default Vue.extend({
|
|||
} else {
|
||||
comment.likes = comment.likeCount
|
||||
}
|
||||
comment.text = autolinker.link(comment.content.replace(/(<([^>]+)>)/ig, ''))
|
||||
comment.text = autolinker.link(comment.content.replace(/(<(?!br>)([^>]+)>)/ig, ''))
|
||||
comment.time = comment.publishedText
|
||||
comment.dataType = 'invidious'
|
||||
comment.numReplies = 0
|
||||
|
|
Loading…
Reference in New Issue