[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. bb3d004fad172eb4296a587ea49afdd80d79f01e

Evergreen Git git at git.evergreen-ils.org
Wed Jul 11 11:47:20 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  bb3d004fad172eb4296a587ea49afdd80d79f01e (commit)
      from  5492a40a583ef654a00a70fa11b99f3e66d0cbfa (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 bb3d004fad172eb4296a587ea49afdd80d79f01e
Author: Cesar Velez <cesar.velez at equinoxinitiative.org>
Date:   Thu Jan 11 14:12:55 2018 -0500

    LP1742782 - fix display of cbox label in list of removable fields
    
    The checkbox input element was being displayed in the middle
    of the label text.
    
    Signed-off-by: Cesar Velez <cesar.velez at equinoxinitiative.org>
    Signed-off-by: Mike Rylander <mrylander at gmail.com>

diff --git a/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2 b/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
index e687c93..68c2fbf 100644
--- a/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
+++ b/Open-ILS/src/templates/staff/cat/z3950/t_list.tt2
@@ -48,12 +48,12 @@
 <div class="panel panel-default" ng-show="field_strip_groups.length">
   <div class="panel-heading">[% l('Remove Fields on Import') %]</div>
   <div class="panel-body">
-    <div class="row">
-      <div class="col-sm-3 checkbox-inline" ng-repeat="grp in field_strip_groups">
-        <label for="strip-grp-{{grp.id()}}">{{grp.label()}}</label>
-        <input id='strip-grp-{{grp.id()}}' ng-model="grp.selected" type="checkbox"/>
-      </div>
-    </div>
+    <ul class="row list-unstyled">
+        <li class="col-sm-3" ng-repeat="grp in field_strip_groups">
+            <label>
+            <input id='strip-grp-{{grp.id()}}' ng-model="grp.selected" type="checkbox"/>{{grp.label()}}</label>
+        </li>
+    </ul>
   </div>
 </div>
 

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/staff/cat/z3950/t_list.tt2 |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list