mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-25 10:45:56 +08:00
Fix Bug 47237
This commit is contained in:
@ -718,7 +718,9 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
|
||||
</div>
|
||||
<div slot='footer'>
|
||||
{comment.quote && <div className='comment-quote'>{sliceQuote(comment.quote)}</div>}
|
||||
<div className='comment-text'><pre>{comment.comment}</pre></div>
|
||||
<div className='comment-text'>{ (comment.comment).includes('https://')?
|
||||
<a onClick={() => window.open(comment.comment)}>{comment.comment}</a> :
|
||||
<pre>{comment.comment}</pre>}</div>
|
||||
{comment.replies.length > 0 &&
|
||||
<ul className='reply-list'>
|
||||
{comment.replies.map((reply, indexReply) => {
|
||||
|
||||
Reference in New Issue
Block a user