diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-11 15:27:34 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-11 15:27:34 +0200 |
commit | 86bed4a6aaf9819822b6d9f23397d37c580dff51 (patch) | |
tree | 1bd73e9780855b3dbf3d41d34b5277464542ae73 | |
parent | 2a19a1e4de848c8c60ef4b4e606770220b3a28df (diff) | |
download | PeerTube-86bed4a6aaf9819822b6d9f23397d37c580dff51.tar.gz PeerTube-86bed4a6aaf9819822b6d9f23397d37c580dff51.tar.zst PeerTube-86bed4a6aaf9819822b6d9f23397d37c580dff51.zip |
Fix dislikes number in video watch page
-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 | ||