mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-12 19:06:13 +00:00
Merge pull request #1757 from jsit/fix/expand-button-when-no-link
fix: Post expand button was not showing if body-only post
This commit is contained in:
commit
8e20d16f71
|
@ -497,12 +497,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
</h5>
|
</h5>
|
||||||
|
|
||||||
{/**
|
{/**
|
||||||
* If there is a URL, an embed title, and we were not told to show the
|
* If there is (a) a URL and an embed title, or (b) a post body, and
|
||||||
* body by the parent component, show the MetadataCard/body toggle.
|
* we were not told to show the body by the parent component, show the
|
||||||
|
* MetadataCard/body toggle.
|
||||||
*/}
|
*/}
|
||||||
{!this.props.showBody &&
|
{!this.props.showBody &&
|
||||||
post.url &&
|
((post.url && post.embed_title) || post.body) &&
|
||||||
post.embed_title &&
|
|
||||||
this.showPreviewButton()}
|
this.showPreviewButton()}
|
||||||
|
|
||||||
{post.removed && (
|
{post.removed && (
|
||||||
|
|
Loading…
Reference in a new issue