mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
parent
024b902c21
commit
371522681a
2 changed files with 2 additions and 2 deletions
2
ui/src/components/comment-node.tsx
vendored
2
ui/src/components/comment-node.tsx
vendored
|
@ -112,7 +112,7 @@ export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|||
{this.state.showEdit && <CommentForm node={node} edit onReplyCancel={this.handleReplyCancel} disabled={this.props.locked} />}
|
||||
{!this.state.showEdit && !this.state.collapsed &&
|
||||
<div>
|
||||
{this.state.viewSource ? <div>{this.commentUnlessRemoved}</div> :
|
||||
{this.state.viewSource ? <pre>{this.commentUnlessRemoved}</pre> :
|
||||
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(this.commentUnlessRemoved)} />
|
||||
}
|
||||
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
||||
|
|
2
ui/src/components/post-listing.tsx
vendored
2
ui/src/components/post-listing.tsx
vendored
|
@ -309,7 +309,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
}
|
||||
{this.props.showBody && post.body &&
|
||||
<>
|
||||
{this.state.viewSource ? <div>{post.body}</div> :
|
||||
{this.state.viewSource ? <pre>{post.body}</pre> :
|
||||
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(post.body)} />
|
||||
}
|
||||
</>
|
||||
|
|
Loading…
Reference in a new issue