about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/features/status/components
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-08-27 17:40:25 +0200
committerThibG <thib@sitedethib.com>2018-08-27 20:21:23 +0200
commit937cd03a9a9f31bb794aa90fced668b8b902ec86 (patch)
tree13e031edc96f13a2b387b72be1627c666d939c41 /app/javascript/flavours/glitch/features/status/components
parent3106c81b1e96cdcb5de9afa3507f344dc11705a3 (diff)
[Glitch] Add missing video descriptions
Port ac092d03e7a781d27aff9cb9ea4637be9c5f2a2a to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/features/status/components')
-rw-r--r--app/javascript/flavours/glitch/features/status/components/detailed_status.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/status/components/detailed_status.js b/app/javascript/flavours/glitch/features/status/components/detailed_status.js
index 5cfc9dfae..ee9eb02c6 100644
--- a/app/javascript/flavours/glitch/features/status/components/detailed_status.js
+++ b/app/javascript/flavours/glitch/features/status/components/detailed_status.js
@@ -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'])}