diff options
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/shared/actor/actor.model.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.html | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/client/src/app/shared/actor/actor.model.ts b/client/src/app/shared/actor/actor.model.ts index 9cc51b948..0e5060f67 100644 --- a/client/src/app/shared/actor/actor.model.ts +++ b/client/src/app/shared/actor/actor.model.ts | |||
@@ -20,7 +20,7 @@ export abstract class Actor implements ActorServer { | |||
20 | 20 | ||
21 | if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path | 21 | if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path |
22 | 22 | ||
23 | this.GET_DEFAULT_AVATAR_URL() | 23 | return this.GET_DEFAULT_AVATAR_URL() |
24 | } | 24 | } |
25 | 25 | ||
26 | static GET_DEFAULT_AVATAR_URL () { | 26 | static GET_DEFAULT_AVATAR_URL () { |
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 9f1b51b2d..bc3a3ffdd 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.html +++ b/client/src/app/videos/+video-watch/video-watch.component.html | |||
@@ -145,6 +145,7 @@ | |||
145 | <div class="pt-3 border-top video-info-channel d-flex"> | 145 | <div class="pt-3 border-top video-info-channel d-flex"> |
146 | <div class="video-info-channel-left d-flex"> | 146 | <div class="video-info-channel-left d-flex"> |
147 | <avatar-channel [video]="video"></avatar-channel> | 147 | <avatar-channel [video]="video"></avatar-channel> |
148 | |||
148 | <div class="video-info-channel-left-links ml-1"> | 149 | <div class="video-info-channel-left-links ml-1"> |
149 | <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Go the channel page"> | 150 | <a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Go the channel page"> |
150 | {{ video.channel.displayName }} | 151 | {{ video.channel.displayName }} |
@@ -230,7 +231,7 @@ | |||
230 | <div class="video-attribute"> | 231 | <div class="video-attribute"> |
231 | <span i18n class="video-attribute-label">Duration</span> | 232 | <span i18n class="video-attribute-label">Duration</span> |
232 | <span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span> | 233 | <span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span> |
233 | </div> | 234 | </div> |
234 | </div> | 235 | </div> |
235 | 236 | ||
236 | <my-video-comments | 237 | <my-video-comments |