From 275e3257cf0b35648e72e71196058730d5fe8990 Mon Sep 17 00:00:00 2001 From: Terran McCanna Date: Thu, 24 Mar 2022 18:21:33 -0400 Subject: [PATCH] LP1966342 Highlight copy count when zero copies This highlights the copy count on the Angular staff catalog search results page when there are zero holdings attached. Signed-off-by: Terran McCanna --- Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html index 7b070fe6f5..82c0f35f3c 100644 --- a/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html +++ b/Open-ILS/src/eg2/src/app/staff/catalog/result/record.component.html @@ -147,7 +147,8 @@
+ *ngFor="let copyCount of getHoldingsSummaries(); let copyIdx = index" + [ngClass]="{'bg-warning':copyCount.count < 1}">
{{copyCount.available}} / {{copyCount.count}} items -- 2.11.0