LP#1522604: Remove red alert style for non-cataloged checkouts
authorKathy Lussier <klussier@masslnc.org>
Tue, 15 Dec 2015 13:39:27 +0000 (08:39 -0500)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 12 Feb 2016 22:16:06 +0000 (17:16 -0500)
The non-cataloged checkouts in the patron summary had a red alert style
applied when there was a lost item count on the patron record. This branch
removes any alert styling since we don't need to highlight non-cataloged
checkouts.

Test plan:
Pre-patch, retrieve a patron record with lost transactions in the web client.
The non-cataloged count in the patron summary will be red. Apply the patch.
The count will no longer be red.

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Open-ILS/src/templates/staff/circ/patron/t_summary.tt2

index 6a3d7f6..7c880b9 100644 (file)
@@ -87,8 +87,7 @@
       <div class="col-md-5">[% l('Lost') %]</div>
       <div class="col-md-7">{{patron_stats().checkouts.lost}}</div>
     </div>
-    <div class="row" 
-      ng-class="{'patron-summary-alert' : patron_stats().checkouts.lost}">
+    <div class="row">
       <div class="col-md-5">[% l('Non-Cataloged') %]</div>
       <div class="col-md-7">{{patron_stats().checkouts.noncat}}</div>
     </div>