mirror of https://github.com/Chocobozzz/PeerTube
More robust user quota component
parent
06fbcde34e
commit
e612ad836a
|
@ -4,7 +4,7 @@
|
|||
|
||||
<div class="progress" tabindex="0" [ngbTooltip]="titleVideoQuota()">
|
||||
<div class="progress-bar" tabindex="0" role="progressbar" [style]="{ width: userVideoQuotaPercentage + '%' }"
|
||||
[attr.aria-valuenow]="userVideoQuotaUsed" aria-valuemin="0" [attr.aria-valuemax]="user.videoQuota"></div>
|
||||
[attr.aria-valuenow]="userVideoQuotaUsed" aria-valuemin="0" [attr.aria-valuemax]="user?.videoQuota"></div>
|
||||
<span>{{ userVideoQuotaUsed | bytes: 1 }}</span>
|
||||
<span>{{ userVideoQuota }}</span>
|
||||
</div>
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
<div class="progress" tabindex="0" [ngbTooltip]="titleVideoQuotaDaily()">
|
||||
<div class="progress-bar" role="progressbar" [style]="{ width: userVideoQuotaDailyPercentage + '%' }"
|
||||
[attr.aria-valuenow]="userVideoQuotaUsedDaily" aria-valuemin="0" [attr.aria-valuemax]="user.videoQuotaDaily"></div>
|
||||
[attr.aria-valuenow]="userVideoQuotaUsedDaily" aria-valuemin="0" [attr.aria-valuemax]="user?.videoQuotaDaily"></div>
|
||||
<span>{{ userVideoQuotaUsedDaily | bytes: 1 }}</span>
|
||||
<span>{{ userVideoQuotaDaily }}</span>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue