From 9d023ed4f6d8a69699d14479d5e12132ea4f4cd2 Mon Sep 17 00:00:00 2001 From: ThibG <thib@sitedethib.com> Date: Sun, 1 Nov 2020 18:31:39 +0100 Subject: [PATCH] Fix some account media gallery items having empty labels (#15073) Remove the labels entirely for images instead of putting an empty label. --- .../mastodon/features/account_gallery/components/media_item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/mastodon/features/account_gallery/components/media_item.js b/app/javascript/mastodon/features/account_gallery/components/media_item.js index c9a7af7f77..ba7ec46a33 100644 --- a/app/javascript/mastodon/features/account_gallery/components/media_item.js +++ b/app/javascript/mastodon/features/account_gallery/components/media_item.js @@ -122,7 +122,7 @@ export default class MediaItem extends ImmutablePureComponent { <div className='media-gallery__gifv'> {content} - <span className='media-gallery__gifv__label'>{label}</span> + {label && <span className='media-gallery__gifv__label'>{label}</span>} </div> ); } -- GitLab