aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-04-13 19:57:57 +0200
committerRigel Kent <sendmemail@rigelk.eu>2020-04-13 19:57:57 +0200
commitd6af81469ba9390ce8ce80161a7de3526ae0253d (patch)
tree739e91d6bc779b5cce5af3db68813a48dd780784 /client/src/app/+my-account
parent2bc9bd08cd121bdffbf56a0241c4decfb77bfdd5 (diff)
downloadPeerTube-d6af81469ba9390ce8ce80161a7de3526ae0253d.tar.gz
PeerTube-d6af81469ba9390ce8ce80161a7de3526ae0253d.tar.zst
PeerTube-d6af81469ba9390ce8ce80161a7de3526ae0253d.zip
Rich reporter field and video embed in moderation abuse list
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.ts2
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 },