[GIT] Evergreen ILS branch rel_3_15 updated. 6c5e4e04effde2581313c54bed6cdd4bbc581455

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 6c5e4e04effde2581313c54bed6cdd4bbc581455 (commit) from dd6e5bce72e321335a8a74a9cd13e79d965812d9 (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 6c5e4e04effde2581313c54bed6cdd4bbc581455 Author: Dan Briem <dbriem@harrisonpl.org> Date: Thu Apr 3 03:03:04 2025 +0000 LP#2105602 Default item alert type ignored Use correct property name when retrieving default item alert type in the copy alerts dialog. Signed-off-by: Dan Briem <dbriem@harrisonpl.org> Signed-off-by: Carol Witt <wittc@cwmars.org> Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> diff --git a/Open-ILS/src/eg2/src/app/staff/share/holdings/copy-alerts-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/share/holdings/copy-alerts-dialog.component.ts index 6341a61b54..245018ce5d 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/holdings/copy-alerts-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/holdings/copy-alerts-dialog.component.ts @@ -148,8 +148,8 @@ export class CopyAlertsDialogComponent extends private async getDefaultAlertType(): Promise<void> { const defaults = await this.serverStore.getItem('eg.cat.volcopy.defaults'); - if (defaults?.values?.thing_alert_type) { - this.defaultAlertType = defaults.values.thing_alert_type; + if (defaults?.values?.item_alert_type) { + this.defaultAlertType = defaults.values.item_alert_type; if (this.newAlert) { this.newAlert.alert_type(this.defaultAlertType); } ----------------------------------------------------------------------- Summary of changes: .../eg2/src/app/staff/share/holdings/copy-alerts-dialog.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User