[GIT] Evergreen ILS branch main updated. c36282b9258ba7be1c9ef10905ab418ade536d44

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, main has been updated via c36282b9258ba7be1c9ef10905ab418ade536d44 (commit) from dd23b9bb54d324ea5e0cb250501857458e4ac9f0 (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 c36282b9258ba7be1c9ef10905ab418ade536d44 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
participants (1)
-
Git User