mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
462 B
10 lines
462 B
<div class="card card">
|
|
<div class="card-header">Assets Size (MB)</div>
|
|
<div class="card-body">
|
|
<div class="aggregation" *ngIf="storageCurrent >= 0">
|
|
<div class="aggregation-label">Total Size</div>
|
|
<div class="aggregation-value">{{storageCurrent | sqxFileSize}}</div>
|
|
<div class="aggregation-label" *ngIf="storageAllowed > 0">Total limit: {{storageAllowed | sqxFileSize}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|