From: ayan4m1 Date: Thu, 15 Jun 2023 12:23:55 +0000 (-0400) Subject: fix:
is almost invisible in darkly theme X-Git-Url: http://these/git/%22%7Bauthor_url%7D/%22?a=commitdiff_plain;h=1ed148d3d230a5c30dea241d8065eee5c4abf381;p=lemmy-ui.git fix:
is almost invisible in darkly theme --- diff --git a/src/shared/components/post/post-listings.tsx b/src/shared/components/post/post-listings.tsx index 098a015..294b949 100644 --- a/src/shared/components/post/post-listings.tsx +++ b/src/shared/components/post/post-listings.tsx @@ -68,7 +68,7 @@ export class PostListings extends Component { return (
{this.posts.length > 0 ? ( - this.posts.map(post_view => ( + this.posts.map((post_view: PostView, idx: number) => ( <> { onAddAdmin={this.props.onAddAdmin} onTransferCommunity={this.props.onTransferCommunity} /> -
+ {idx + 1 !== this.posts.length && ( +
+ )} )) ) : (