aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-06-28 11:00:54 +0200
committerChocobozzz <me@florianbigard.com>2021-06-28 11:00:54 +0200
commit50cb778ee6c55e318331ff80a91e891751ab5c73 (patch)
treefb5da06462e0a7b78bbb4bd5cf8c12cd7959db7f /client/src/app/shared/shared-main
parent8cbc40b2fe9d36ef0505b9441276ca561342e9e9 (diff)
downloadPeerTube-50cb778ee6c55e318331ff80a91e891751ab5c73.tar.gz
PeerTube-50cb778ee6c55e318331ff80a91e891751ab5c73.tar.zst
PeerTube-50cb778ee6c55e318331ff80a91e891751ab5c73.zip
Fix daily quota display
Diffstat (limited to 'client/src/app/shared/shared-main')
-rw-r--r--client/src/app/shared/shared-main/users/user-quota.component.html3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/shared/shared-main/users/user-quota.component.html b/client/src/app/shared/shared-main/users/user-quota.component.html
index 06981223a..dd1fc20d0 100644
--- a/client/src/app/shared/shared-main/users/user-quota.component.html
+++ b/client/src/app/shared/shared-main/users/user-quota.component.html
@@ -14,9 +14,8 @@
14 <div class="progress" tabindex="0" [ngbTooltip]="titleVideoQuotaDaily()"> 14 <div class="progress" tabindex="0" [ngbTooltip]="titleVideoQuotaDaily()">
15 <div class="progress-bar secondary" role="progressbar" [style]="{ width: userVideoQuotaDailyPercentage + '%' }" 15 <div class="progress-bar secondary" role="progressbar" [style]="{ width: userVideoQuotaDailyPercentage + '%' }"
16 [attr.aria-valuenow]="userVideoQuotaUsedDaily" aria-valuemin="0" [attr.aria-valuemax]="user.videoQuotaDaily"></div> 16 [attr.aria-valuenow]="userVideoQuotaUsedDaily" aria-valuemin="0" [attr.aria-valuemax]="user.videoQuotaDaily"></div>
17 <span class="ml-auto mr-2">{{ userVideoQuotaDaily }}</span>
18 <span>{{ userVideoQuotaUsedDaily | bytes: 1 }}</span> 17 <span>{{ userVideoQuotaUsedDaily | bytes: 1 }}</span>
19 <span>{{ userVideoQuotaDaily }}</span> 18 <span>{{ userVideoQuotaDaily }}</span>
20 </div> 19 </div>
21 </div> 20 </div>
22</div> \ No newline at end of file 21</div>