[GIT] Evergreen ILS branch rel_3_13 updated. f91846eb2e21aa91a263d6c4beb1c47576520f9c

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 f91846eb2e21aa91a263d6c4beb1c47576520f9c (commit) from cd6f36548152cab1203bbb9dcd64aab9bded6fc2 (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 f91846eb2e21aa91a263d6c4beb1c47576520f9c Author: Stephanie Leary <stephanie.leary@equinoxoli.org> Date: Sat Mar 15 21:54:08 2025 +0000 LP1940867 Avoid error when reimporting vandelay queue Avoids checking nonexistent combobox freetext value when reimporting Vandelay queue. Release-note: Avoid freetext error when reimporting MARC import queue Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> Signed-off-by: Jane Sandberg <sandbergja@gmail.com> diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts index c7b6474842..902d1e1635 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts @@ -472,7 +472,7 @@ export class ImportComponent implements OnInit, AfterViewInit, OnDestroy { // Extract selected queue ID or create a new queue when requested. resolveQueue(): Promise<number> { - if (this.selectedQueue.freetext) { + if (this.selectedQueue?.freetext) { // Free text queue selector means create a new entry. // TODO: first check for name dupes ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/staff/cat/vandelay/import.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User