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>
<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>