Merge branch 'main' into expand-video-embeds-to-fullwidth

This commit is contained in:
David Palmer 2023-06-21 16:31:13 +12:00 committed by GitHub
commit 121ed585dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 12 deletions

View File

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