From 34dd7cb4ca4807e61a8c1d584b047c2cb383fe5a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 29 Jul 2019 16:30:01 +0200 Subject: Fix quota in instance features table --- client/src/app/shared/instance/instance-features-table.component.html | 2 +- client/src/app/shared/instance/instance-features-table.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'client/src/app/shared') diff --git a/client/src/app/shared/instance/instance-features-table.component.html b/client/src/app/shared/instance/instance-features-table.component.html index 2885f97e3..2987bd00e 100644 --- a/client/src/app/shared/instance/instance-features-table.component.html +++ b/client/src/app/shared/instance/instance-features-table.component.html @@ -22,7 +22,7 @@ {{ initialUserVideoQuota | bytes: 0 }} ({{ dailyUserVideoQuota | bytes: 0 }} per day) - + diff --git a/client/src/app/shared/instance/instance-features-table.component.ts b/client/src/app/shared/instance/instance-features-table.component.ts index 72e7c2730..a53082a93 100644 --- a/client/src/app/shared/instance/instance-features-table.component.ts +++ b/client/src/app/shared/instance/instance-features-table.component.ts @@ -22,7 +22,7 @@ export class InstanceFeaturesTableComponent implements OnInit { } get dailyUserVideoQuota () { - return this.serverService.getConfig().user.videoQuotaDaily + return Math.min(this.initialUserVideoQuota, this.serverService.getConfig().user.videoQuotaDaily) } ngOnInit () { -- cgit v1.2.3