~cytrogen/masto-fe

a4b69bec2eab61f2c3dcebddfe1474be386f828e — Christian Schmidt 2 years ago 6781dc6
Fix missing GIF badge in account gallery (#26166)

1 files changed, 5 insertions(+), 1 deletions(-)

M app/javascript/mastodon/features/account_gallery/components/media_item.jsx
M app/javascript/mastodon/features/account_gallery/components/media_item.jsx => app/javascript/mastodon/features/account_gallery/components/media_item.jsx +5 -1
@@ 128,7 128,11 @@ export default class MediaItem extends ImmutablePureComponent {
        <div className='media-gallery__gifv'>
          {content}

          {label && <span className='media-gallery__gifv__label'>{label}</span>}
          {label && (
            <div className='media-gallery__item__badges'>
              <span className='media-gallery__gifv__label'>{label}</span>
            </div>
          )}
        </div>
      );
    }