Fix: dont format ASN as number on dashboard (#6708)

This commit is contained in:
shamoon 2024-05-13 13:58:47 -07:00 committed by GitHub
parent 64de6b8571
commit 953ba9160e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,7 +18,7 @@
@if (statistics?.current_asn) {
<div class="list-group-item d-flex justify-content-between align-items-center" routerLink="/documents/">
<ng-container i18n>Current ASN</ng-container>:
<span class="badge bg-secondary text-light rounded-pill">{{statistics?.current_asn | number}}</span>
<span class="badge bg-secondary text-light rounded-pill">{{statistics?.current_asn}}</span>
</div>
}
@if (statistics?.document_file_type_counts?.length > 1) {