]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix dynamic count labels hidden in light mode 3303/head
authorshamoon <4887959+shamoon@users.noreply.github.com>
Wed, 3 May 2023 20:22:16 +0000 (13:22 -0700)
committershamoon <4887959+shamoon@users.noreply.github.com>
Wed, 3 May 2023 20:22:16 +0000 (13:22 -0700)
src-ui/src/app/components/common/filterable-dropdown/toggleable-dropdown-button/toggleable-dropdown-button.component.html

index 211bef7563c759718639895d5cb89dc9ed7fd3bc..af935b0db9b286238814afdf4dba0f87b557fdd8 100644 (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>