Merge pull request #3303 from paperless-ngx/fix/discussion-3300

Fix dynamic count labels hidden in light mode
This commit is contained in:
shamoon 2023-05-03 15:14:05 -07:00 committed by GitHub
commit cd861364a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,5 +20,5 @@
<app-tag *ngIf="isTag; else displayName" [tag]="item" [clickable]="false"></app-tag>
<ng-template #displayName><small>{{item.name}}</small></ng-template>
</div>
<div class="badge badge-light rounded-pill ms-auto me-1">{{count ?? item.document_count}}</div>
<div class="badge bg-light text-dark rounded-pill ms-auto me-1">{{count ?? item.document_count}}</div>
</button>