Fix image expanding and truncation issue.

pull/428/head v0.5.22
Dessalines 2020-01-15 22:33:23 -05:00
parent 0457d4c8f1
commit d5af66c1b1
2 changed files with 18 additions and 13 deletions

View File

@ -158,3 +158,4 @@ hr {
.fl-1 {
flex: 1;
}

View File

@ -136,7 +136,11 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
</button>
)}
</div>
{post.url && isImage(post.url) && !post.nsfw && !post.community_nsfw && (
{post.url &&
isImage(post.url) &&
!post.nsfw &&
!post.community_nsfw &&
!this.state.imageExpanded && (
<span
title={i18n.t('expand_here')}
class="pointer"