mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-07 23:35:22 +01:00
Fix: dont format ASN as number on dashboard (#6708)
This commit is contained in:
parent
64de6b8571
commit
953ba9160e
1 changed files with 1 additions and 1 deletions
|
|
@ -18,7 +18,7 @@
|
||||||
@if (statistics?.current_asn) {
|
@if (statistics?.current_asn) {
|
||||||
<div class="list-group-item d-flex justify-content-between align-items-center" routerLink="/documents/">
|
<div class="list-group-item d-flex justify-content-between align-items-center" routerLink="/documents/">
|
||||||
<ng-container i18n>Current ASN</ng-container>:
|
<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>
|
</div>
|
||||||
}
|
}
|
||||||
@if (statistics?.document_file_type_counts?.length > 1) {
|
@if (statistics?.document_file_type_counts?.length > 1) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue