Skip to content

Commit

Permalink
Fix missing GIF badge in account gallery (mastodon#26166)
Browse files Browse the repository at this point in the history
  • Loading branch information
c960657 authored Jul 26, 2023
1 parent 6781dc6 commit a4b69be
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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>
);
}
Expand Down

0 comments on commit a4b69be

Please # to comment.