[Glitch] Add missing video descriptions

Port ac092d03e7 to glitch-soc
This commit is contained in:
Thibaut Girka
2018-08-27 17:40:25 +02:00
committed by ThibG
parent 3106c81b1e
commit 937cd03a9a
6 changed files with 6 additions and 0 deletions

View File

@@ -36,6 +36,7 @@ export default class StatusCheckBox extends React.PureComponent {
<Component
preview={video.get('preview_url')}
src={video.get('url')}
alt={video.get('description')}
width={239}
height={110}
inline

View File

@@ -60,6 +60,7 @@ export default class DetailedStatus extends ImmutablePureComponent {
<Video
preview={video.get('preview_url')}
src={video.get('url')}
alt={video.get('description')}
inline
sensitive={status.get('sensitive')}
letterbox={settings.getIn(['media', 'letterbox'])}

View File

@@ -323,6 +323,7 @@ export default class Video extends React.PureComponent {
role='button'
tabIndex='0'
aria-label={alt}
title={alt}
width={width}
height={height}
onClick={this.togglePlay}