diff options
Diffstat (limited to 'client/src/app/+my-account')
-rw-r--r-- | client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts b/client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts index 153fc0127..75d6d8acd 100644 --- a/client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts +++ b/client/src/app/+my-account/my-account-video-channels/my-account-video-channels.component.ts | |||
@@ -56,7 +56,7 @@ export class MyAccountVideoChannelsComponent implements OnInit { | |||
56 | display: false, | 56 | display: false, |
57 | ticks: { | 57 | ticks: { |
58 | min: Math.max(0, this.videoChannelsMinimumDailyViews - (3 * this.videoChannelsMaximumDailyViews / 100)), | 58 | min: Math.max(0, this.videoChannelsMinimumDailyViews - (3 * this.videoChannelsMaximumDailyViews / 100)), |
59 | max: this.videoChannelsMaximumDailyViews | 59 | max: Math.max(1, this.videoChannelsMaximumDailyViews) |
60 | } | 60 | } |
61 | }] | 61 | }] |
62 | }, | 62 | }, |