Merge pull request #1629 from jsit/fix/remove-body-preview

fix: Remove body preview
This commit is contained in:
SleeplessOne1917 2023-06-26 20:40:30 -04:00 committed by GitHub
commit 773176084c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1411,9 +1411,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
{/* If it has a thumbnail, do a right aligned thumbnail */} {/* If it has a thumbnail, do a right aligned thumbnail */}
{this.mobileThumbnail()} {this.mobileThumbnail()}
{/* Show a preview of the post body */}
{this.showBodyPreview()}
{this.commentsLine(true)} {this.commentsLine(true)}
{this.userActionsLine()} {this.userActionsLine()}
{this.duplicatesLine()} {this.duplicatesLine()}
@ -1445,7 +1442,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<div className="col-12 col-sm-9 col-lg-10"> <div className="col-12 col-sm-9 col-lg-10">
{this.postTitleLine()} {this.postTitleLine()}
{this.createdLine()} {this.createdLine()}
{this.showBodyPreview()}
{this.commentsLine()} {this.commentsLine()}
{this.duplicatesLine()} {this.duplicatesLine()}
{this.userActionsLine()} {this.userActionsLine()}