[GIT] Evergreen ILS branch rel_3_13 updated. 942fe6217d2b433b60fcc3b090a687508c6ab301

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_13 has been updated via 942fe6217d2b433b60fcc3b090a687508c6ab301 (commit) from 34a805b43cbe6daa136b1c2e76974d39219f3da9 (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 942fe6217d2b433b60fcc3b090a687508c6ab301 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