[GIT] Evergreen ILS branch rel_3_13 updated. 9507322cd7fd2cc1a9c1625af26ca78d054f6cf3

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 9507322cd7fd2cc1a9c1625af26ca78d054f6cf3 (commit) from 7b8be9423674b5bad81236b425ce8277326b7d14 (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 9507322cd7fd2cc1a9c1625af26ca78d054f6cf3 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 fc9142edc1..1e62def37b 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 @@ -71,6 +71,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