[GIT] Evergreen ILS branch main updated. 9988cbb49981b2e6bc0cfd8f67ffc1d0c43a1ca6

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 9988cbb49981b2e6bc0cfd8f67ffc1d0c43a1ca6 (commit) from f586b683424f3c8abf03c2dc9b25228af4f1941c (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 9988cbb49981b2e6bc0cfd8f67ffc1d0c43a1ca6 Author: Ian Skelskey <ianskelskey@gmail.com> Date: Mon Jun 23 20:56:19 2025 -0400 LP#1973754: Fix match set type not displaying correctly Update the Record Editor to display labels for match set types - Modify the customValues in fieldOptions to include labels for 'biblio', 'serial', and 'authority' - Ensure the drop-down in the Record Matching definition Set dialog displays 'Bibliographic Records', 'Serial Records', and 'Authority Records' correctly. Release-Note: Display match set types with appropriate labels in MARC Batch Import/Export. Signed-off-by: Ian Skelskey <ianskelskey@gmail.com> Signed-off-by: blake <blake@mobiusconsortium.org> diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.html b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.html index 076d270311..1890a060b3 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.html @@ -1,4 +1,3 @@ - <div class="d-flex mb-3"> <div> <div class="input-group"> @@ -30,8 +29,7 @@ </eg-grid-column> </eg-grid> -<eg-fm-record-editor #editDialog idlClass="vms" - [fieldOptions]="{mtype:{customValues:[{id:'biblio'},{id:'serial'},{id:'authority'}]}}"> +<eg-fm-record-editor #editDialog idlClass="vms"> </eg-fm-record-editor> diff --git a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.ts b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.ts index 26f560e155..93762bcc3d 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/cat/vandelay/match-set-list.component.ts @@ -69,6 +69,12 @@ export class MatchSetListComponent implements AfterViewInit { .subscribe(() => this.grid.reload()); } ); + this.editDialog.fieldOptions = + {mtype:{customValues:[ + {id:'biblio', label:$localize`Bibliographic Records`}, + {id:'serial', label:$localize`Serial Records`}, + {id:'authority', label:$localize`Authority Records`} + ]}}; } orgOnChange(org: IdlObject) { ----------------------------------------------------------------------- Summary of changes: .../eg2/src/app/staff/cat/vandelay/match-set-list.component.html | 4 +--- .../src/eg2/src/app/staff/cat/vandelay/match-set-list.component.ts | 6 ++++++ 2 files changed, 7 insertions(+), 3 deletions(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User