
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 750bc317aa3a20247b1e9f6b7cba701a4e94b10c (commit) from d90309de2583d04f5cd3202d6b15ad0009a475a2 (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 750bc317aa3a20247b1e9f6b7cba701a4e94b10c 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