
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_15 has been updated via 3bff39cc04a2d4e8f04655dbc63b0a3276d8e598 (commit) from 1e4fdc639e14e0998a7d0556f009a699c7b8decf (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 3bff39cc04a2d4e8f04655dbc63b0a3276d8e598 Author: Dan Briem <dbriem@harrisonpl.org> Date: Tue May 27 04:10:18 2025 +0000 LP#2110746 Print button on patron holds screen not working Fix template data property names to resolve an error preventing the print button from working beneath the holds grid in the AngularJS patron interface. Release-note: Fixes broken print button below the patron holds grid. Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: Jane Sandberg <sandbergja@gmail.com> diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/holds.js b/Open-ILS/web/js/ui/default/staff/circ/patron/holds.js index ded5c889dc..e6d293eee7 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/holds.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/holds.js @@ -227,8 +227,8 @@ function($scope, $q, $routeParams, egCore, egUser, patronSvc, hold : egCore.idl.toHash(item.hold), copy : egCore.idl.toHash(item.copy), volume : egCore.idl.toHash(item.volume), - title : item.mvr.title(), - author : item.mvr.author() + title : item.hold.title, + author : item.hold.author }); }); ----------------------------------------------------------------------- Summary of changes: Open-ILS/web/js/ui/default/staff/circ/patron/holds.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Evergreen ILS