Merge branch 'main' into add-user-scalable-no

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

View file

@ -68,7 +68,7 @@ export class PostListings extends Component<PostListingsProps, any> {
return ( return (
<div> <div>
{this.posts.length > 0 ? ( {this.posts.length > 0 ? (
this.posts.map(post_view => ( this.posts.map((post_view, idx) => (
<> <>
<PostListing <PostListing
post_view={post_view} post_view={post_view}
@ -96,7 +96,9 @@ export class PostListings extends Component<PostListingsProps, any> {
onAddAdmin={this.props.onAddAdmin} onAddAdmin={this.props.onAddAdmin}
onTransferCommunity={this.props.onTransferCommunity} onTransferCommunity={this.props.onTransferCommunity}
/> />
<hr className="my-3" /> {idx + 1 !== this.posts.length && (
<hr className="my-3 border border-primary" />
)}
</> </>
)) ))
) : ( ) : (