]> Untitled Git - lemmy-ui.git/blobdiff - src/shared/components/post/post-listings.tsx
fix: <hr> is almost invisible in darkly theme
[lemmy-ui.git] / src / shared / components / post / post-listings.tsx
index 098a015d1beecf9cdfcf0f25e2eed27092955450..294b9494493238feeb93d03792d5a6ba392e01a6 100644 (file)
@@ -68,7 +68,7 @@ export class PostListings extends Component<PostListingsProps, any> {
     return (
       <div>
         {this.posts.length > 0 ? (
-          this.posts.map(post_view => (
+          this.posts.map((post_view: PostView, idx: number) => (
             <>
               <PostListing
                 post_view={post_view}
@@ -96,7 +96,9 @@ export class PostListings extends Component<PostListingsProps, any> {
                 onAddAdmin={this.props.onAddAdmin}
                 onTransferCommunity={this.props.onTransferCommunity}
               />
-              <hr className="my-3" />
+              {idx + 1 !== this.posts.length && (
+                <hr className="my-3 border border-primary" />
+              )}
             </>
           ))
         ) : (