
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 33f1e17c1450142a6a1ffe94772cb39e5d7e5387 (commit) from 8577efdd85a2735592212aae501018dab073389c (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 33f1e17c1450142a6a1ffe94772cb39e5d7e5387 Author: Dan Briem <dbriem@harrisonpl.org> Date: Fri Feb 14 21:57:52 2025 +0000 LP#2098011 Holds Shelving Location Group Filter Not Reapplying On the holds pull list, filtering by shelving location group, removing the filter, then reapplying it fails because of a malformed pcrud request. Fix condition: !groupsToMap.length instead of !groupsToMap. Release-note: Fixes a bug where re-applying a shelving location group filter to the pull list fails. Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: Gina Monti <gmonti@biblio.org> Signed-off-by: Michele Morgan <mmorgan@noblenet.org> diff --git a/Open-ILS/src/eg2/src/app/staff/share/holds/copy-locations-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/share/holds/copy-locations-dialog.component.ts index 011cb5580c..d06b20eef8 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holds/copy-locations-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/holds/copy-locations-dialog.component.ts @@ -211,7 +211,7 @@ export class HoldCopyLocationsDialogComponent return mappedIds; }, []); - if (!groupsToMap) {return of([...new Set(cachedIds)]);} + if (!groupsToMap.length) {return of([...new Set(cachedIds)]);} // otherwise, prepare the pcrud search groupsToMap.forEach(id => this.mappedIdsCache[id] = []); ----------------------------------------------------------------------- Summary of changes: .../eg2/src/app/staff/share/holds/copy-locations-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS