[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 05ab1c99fe8240207b0943f1c05dfea30983dcf9
Evergreen Git
git at git.evergreen-ils.org
Tue May 1 22:46:49 EDT 2018
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_3_1 has been updated
via 05ab1c99fe8240207b0943f1c05dfea30983dcf9 (commit)
from 00e1eb5c5fc7947feb13aa426e7a7ed4a9255e66 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 05ab1c99fe8240207b0943f1c05dfea30983dcf9
Author: Jane Sandberg <sandbej at linnbenton.edu>
Date: Thu Mar 22 07:28:27 2018 -0700
LP1119370: Corrects sorting in the list of z39.50 services
To test
-------
[1] Add several z39.50 servers, with names starting with both
lower case and capital letters.
[2] In the Web client, go to Cataloging > Import Record from
Z39.50. The list of Services and Credentials will be sorted
in order alphabetically twice -- first for names that start
with a capital letter, then for names that start with lower
case letters.
[3] Apply this patch and repeat step 2. This time, the list
should be sorted alphabetically, and then have Local Catalog
at the very bottom of the list.
Signed-off-by: Jane Sandberg <sandbej at linnbenton.edu>
Signed-off-by: Ben Shum <ben at evergreener.net>
diff --git a/Open-ILS/src/templates/staff/cat/z3950/t_target.tt2 b/Open-ILS/src/templates/staff/cat/z3950/t_target.tt2
index 17ca475..0ca0e6c 100644
--- a/Open-ILS/src/templates/staff/cat/z3950/t_target.tt2
+++ b/Open-ILS/src/templates/staff/cat/z3950/t_target.tt2
@@ -1,4 +1,4 @@
-<div ng-repeat="target in targets" class="z3950-target-list">
+<div ng-repeat="target in targets | orderBy:'settings.label'" class="z3950-target-list">
<div class="checkbox">
<input ng-model="target.selected" type="checkbox">
<div>
-----------------------------------------------------------------------
Summary of changes:
.../src/templates/staff/cat/z3950/t_target.tt2 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list