~cytrogen/masto-fe

879c7ed2d3dd3d338a28d426426e95be0166b943 — Christian Schmidt 2 years ago 88ba538
[Glitch] Fix missing GIF badge in account gallery

Port a4b69bec2eab61f2c3dcebddfe1474be386f828e to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
M app/javascript/flavours/glitch/features/account_gallery/components/media_item.jsx => app/javascript/flavours/glitch/features/account_gallery/components/media_item.jsx +5 -1
@@ 130,7 130,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>
      );
    }