From c6b68ab7c668b95f79f79f5e091fa83f23075111 Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Wed, 21 Apr 2021 14:46:02 +0300 Subject: [PATCH] Fix Bug 47237 --- apps/common/mobile/lib/view/collaboration/Comments.jsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index 2fd0dbdfa..11cfa7dfd 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -718,7 +718,9 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
{comment.quote &&
{sliceQuote(comment.quote)}
} -
{comment.comment}
+
{ (comment.comment).includes('https://')? + window.open(comment.comment)}>{comment.comment} : +
{comment.comment}
}
{comment.replies.length > 0 &&