diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-01-07 14:38:01 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-01-07 14:47:50 +0100 |
commit | df8340b7b8daf108557309a3eaf97d495dbd2eab (patch) | |
tree | faa9d15081561f1ca2192fb86d3a4729a53e51ee /client/src/app/videos | |
parent | 31174a272a65c83c8d3e10e9d5d59786bd05682a (diff) | |
download | PeerTube-df8340b7b8daf108557309a3eaf97d495dbd2eab.tar.gz PeerTube-df8340b7b8daf108557309a3eaf97d495dbd2eab.tar.zst PeerTube-df8340b7b8daf108557309a3eaf97d495dbd2eab.zip |
Add duration to video attributes in watch view
Diffstat (limited to 'client/src/app/videos')
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html index 74ac64a63..246eac2dd 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -226,6 +226,11 @@ | |||
226 | class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }" | 226 | class="video-attribute-value" [routerLink]="[ '/search' ]" [queryParams]="{ tagsOneOf: [ tag ] }" |
227 | >{{ tag }}</a> | 227 | >{{ tag }}</a> |
228 | </div> | 228 | </div> |
229 | |||
230 | <div class="video-attribute"> | ||
231 | <span i18n class="video-attribute-label">Duration</span> | ||
232 | <span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span> | ||
233 | </div> | ||
229 | </div> | 234 | </div> |
230 | 235 | ||
231 | <my-video-comments | 236 | <my-video-comments |