aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/instance/instance-features-table.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/instance/instance-features-table.component.html')
-rw-r--r--client/src/app/shared/instance/instance-features-table.component.html4
1 files changed, 2 insertions, 2 deletions
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 ba170f074..dc8db8cc1 100644
--- a/client/src/app/shared/instance/instance-features-table.component.html
+++ b/client/src/app/shared/instance/instance-features-table.component.html
@@ -6,13 +6,13 @@
6 6
7 <td class="value"> 7 <td class="value">
8 <ng-container *ngIf="initialUserVideoQuota !== -1"> 8 <ng-container *ngIf="initialUserVideoQuota !== -1">
9 {{ initialUserVideoQuota | bytes: 0 }} 9 {{ initialUserVideoQuota | bytes: 0 }} <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
10 10
11 <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help> 11 <my-help helpType="custom" [customHtml]="quotaHelpIndication"></my-help>
12 </ng-container> 12 </ng-container>
13 13
14 <ng-container i18n *ngIf="initialUserVideoQuota === -1"> 14 <ng-container i18n *ngIf="initialUserVideoQuota === -1">
15 Unlimited 15 Unlimited <ng-container *ngIf="dailyUserVideoQuota !== -1">({{ dailyUserVideoQuota | bytes: 0 }} per day)</ng-container>
16 </ng-container> 16 </ng-container>
17 </td> 17 </td>
18 </tr> 18 </tr>