
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 806866646fff176b1bec3487aa3668c2d8cadbba (commit) from 63a2b3e6a3dec545e3bb5da1719824baa7909351 (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 806866646fff176b1bec3487aa3668c2d8cadbba 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