diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 7ba8d1fa4..0f4f5ce89 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts | |||
@@ -296,7 +296,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
296 | private setVideoLikesBarTooltipText () { | 296 | private setVideoLikesBarTooltipText () { |
297 | this.likesBarTooltipText = this.i18n( | 297 | this.likesBarTooltipText = this.i18n( |
298 | '{{likesNumber}} likes / {{dislikesNumber}} dislikes', | 298 | '{{likesNumber}} likes / {{dislikesNumber}} dislikes', |
299 | { likesNumber: this.video.likes, dislikes: this.video.dislikes } | 299 | { likesNumber: this.video.likes, dislikesNumber: this.video.dislikes } |
300 | ) | 300 | ) |
301 | } | 301 | } |
302 | 302 | ||