Fix our media gallery not having alt text and tooltips

th-downstream
Ondřej Hruška 7 years ago
parent f8749b268c
commit d08756cfc3

@ -117,7 +117,13 @@ export default class StatusGalleryItem extends React.PureComponent {
onClick={this.handleClick}
target='_blank'
>
<img className={letterbox ? 'letterbox' : ''} src={previewUrl} srcSet={srcSet} sizes={sizes} alt='' />
<img
className={letterbox ? 'letterbox' : ''}
src={previewUrl} srcSet={srcSet}
sizes={sizes}
alt={attachment.get('description')}
title={attachment.get('description')}
/>
</a>
);
} else if (attachment.get('type') === 'gifv') {

Loading…
Cancel
Save