[open-ils-commits] [GIT] Evergreen ILS branch rel_3_4 updated. 55b38ba2463016085dd7e20c39fa61dd2d251fc3

Evergreen Git git at git.evergreen-ils.org
Wed Jun 3 15:55:40 EDT 2020


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_4 has been updated
       via  55b38ba2463016085dd7e20c39fa61dd2d251fc3 (commit)
      from  6f0b79352e1972a42ff0c17c98d35af974ecfb32 (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 55b38ba2463016085dd7e20c39fa61dd2d251fc3
Author: Jason Boyer <JBoyer at eoli.info>
Date:   Thu May 21 18:19:57 2020 -0400

    LP1880035: Fix rendering of monograph parts
    
    A BorderContainer is primarily used to allow anchoring views to the top,
    bottom, left, or right of the container and usually allows the use of a
    splitter to resize child views. Since we don't use any of that and don't
    need such a control, it was apparrently just luck that it worked at all.
    Using a plain ContentPane instead allows the page to render as expected.
    
    Thanks to Galen Charlton for tracking this down and finding the fix.
    
    Signed-off-by: Jason Boyer <JBoyer at eoli.info>
    Signed-off-by: Jason Stephenson <jason at sigio.com>
    Signed-off-by: Bill Erickson <berickxx at gmail.com>

diff --git a/Open-ILS/src/templates/conify/global/biblio/monograph_part.tt2 b/Open-ILS/src/templates/conify/global/biblio/monograph_part.tt2
index 1de0d0ab50..1975290ae1 100644
--- a/Open-ILS/src/templates/conify/global/biblio/monograph_part.tt2
+++ b/Open-ILS/src/templates/conify/global/biblio/monograph_part.tt2
@@ -1,6 +1,6 @@
 [% WRAPPER base.tt2 %]
 [% ctx.page_title = l('Configure Monograph Parts') %]
-    <div dojoType="dijit.layout.BorderContainer" design="headline" >
+    <div dojoType="dijit.layout.ContentPane" layoutAlign="client">
 
         <div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel' region="top" style="height:30px;">
             <div>[% l('Monograph Parts') %]</div>
@@ -27,7 +27,6 @@
   </div>
 
 <script type="text/javascript">
-    dojo.require('dijit.layout.BorderContainer');
     dojo.require('openils.CGI');
     dojo.require('openils.Util');
     dojo.require('openils.widget.AutoGrid');

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

Summary of changes:
 Open-ILS/src/templates/conify/global/biblio/monograph_part.tt2 | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list