Merge branch 'main' into com-create-post

This commit is contained in:
SleeplessOne1917 2023-06-21 01:15:59 +00:00 committed by GitHub
commit 5affcd80c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -734,24 +734,22 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
get commentsButton() {
const post_view = this.postView;
const title = i18n.t("number_of_comments", {
count: Number(post_view.counts.comments),
formattedCount: Number(post_view.counts.comments),
});
return (
<Link
className="btn btn-link text-muted ps-0 text-muted"
title={i18n.t("number_of_comments", {
count: Number(post_view.counts.comments),
formattedCount: Number(post_view.counts.comments),
})}
className="btn btn-link btn-sm text-muted ps-0"
title={title}
to={`/post/${post_view.post.id}?scrollToComments=true`}
data-tippy-content={title}
>
<Icon icon="message-square" classes="me-1" inline />
<span className="me-2">
{i18n.t("number_of_comments", {
count: Number(post_view.counts.comments),
formattedCount: numToSI(post_view.counts.comments),
})}
</span>
{post_view.counts.comments}
{this.unreadCount && (
<span className="small text-warning">
<span className="badge text-bg-warning">
({this.unreadCount} {i18n.t("new")})
</span>
)}