[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 441b678791a6b9cdbddd2ebf969f9f3046a81c49
Evergreen Git
git at git.evergreen-ils.org
Wed Jan 16 14:14:34 EST 2019
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 441b678791a6b9cdbddd2ebf969f9f3046a81c49 (commit)
from 3058a0ddee6d6099a12ee677e909b32f0aa7597b (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 441b678791a6b9cdbddd2ebf969f9f3046a81c49
Author: Jason Boyer <jboyer at library.in.gov>
Date: Wed Jan 16 08:36:40 2019 -0500
LP1742521: Receipt Count Repair
The div wrapping the receipt printing controls was
shown or hidden using an ng-if declaration which
created a new $scope as explained in bug 1696238,
which caused the controller to not notice that the
value was changed. Changing that to an ng-show
allows the updated value to get where it needs to
be.
Signed-off-by: Jason Boyer <jboyer at library.in.gov>
Signed-off-by: Mike Rylander <mrylander at gmail.com>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2
index b143175..16c29fe 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_bills.tt2
@@ -103,7 +103,7 @@
<!-- pull-right is causing the content to flow several pixels
off to the right. flex-row is honoring the boundaries better.
not sure what's up, there. -->
-<div class="flex-row" ng-if="!disable_auto_print">
+<div class="flex-row" ng-show="!disable_auto_print">
<div class="flex-cell"></div>
<div ng-hide="disablePatronCredit" class="pad-right">
<div class="checkbox">
-----------------------------------------------------------------------
Summary of changes:
.../src/templates/staff/circ/patron/t_bills.tt2 | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list