[open-ils-commits] [GIT] Evergreen ILS branch master updated. 564f3fdbe4ec932c041e9304bbcd6d0e38b40dfa
Evergreen Git
git at git.evergreen-ils.org
Wed Jun 3 15:55:58 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, master has been updated
via 564f3fdbe4ec932c041e9304bbcd6d0e38b40dfa (commit)
from 07971c7e01ba6911a64955272592798f7ad24f69 (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 564f3fdbe4ec932c041e9304bbcd6d0e38b40dfa
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