mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
parent
0e55ef7d9e
commit
344ba4dfae
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 && <CommentForm node={node} edit onReplyCancel={this.handleReplyCancel} disabled={this.props.locked} />}
|
||||||
{!this.state.showEdit && !this.state.collapsed &&
|
{!this.state.showEdit && !this.state.collapsed &&
|
||||||
<div>
|
<div>
|
||||||
{this.state.viewSource ? <div>{this.commentUnlessRemoved}</div> :
|
{this.state.viewSource ? <pre>{this.commentUnlessRemoved}</pre> :
|
||||||
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(this.commentUnlessRemoved)} />
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(this.commentUnlessRemoved)} />
|
||||||
}
|
}
|
||||||
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
<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.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)} />
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(post.body)} />
|
||||||
}
|
}
|
||||||
</>
|
</>
|
||||||
|
Loading…
Reference in New Issue
Block a user