mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Hiding thumbnails for nsfw posts and nsfw community posts.
- Fixes #337
This commit is contained in:
parent
0651ae5ec0
commit
2cf117b3c5
2
ui/src/components/post-listing.tsx
vendored
2
ui/src/components/post-listing.tsx
vendored
@ -125,7 +125,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
{post.url && isImage(post.url) && (
|
||||
{post.url && isImage(post.url) && !post.nsfw && !post.community_nsfw && (
|
||||
<span
|
||||
title={i18n.t('expand_here')}
|
||||
class="pointer"
|
||||
|
Loading…
Reference in New Issue
Block a user