From 43dd20a8a94eb98cafde93b410a3863cd7a1d71a Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 10 Jul 2019 11:51:53 -0400 Subject: [PATCH] LP1834665 Flat text editor uses '$' delimiter MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Consistent with the AngJS flat text MARC editor, use '$' as the subfield delimiter instead of the default '‡'. Signed-off-by: Bill Erickson --- Open-ILS/src/eg2/src/app/staff/share/marc-edit/marcrecord.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/marcrecord.ts b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/marcrecord.ts index 1b0c488e46..0c7b70ba2c 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/marcrecord.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/marcrecord.ts @@ -12,7 +12,7 @@ export class MarcRecord { breakerText: string; constructor(xml: string) { - this.record = new MARC21.Record({marcxml: xml}); + this.record = new MARC21.Record({marcxml: xml, delimiter: '$'}); this.breakerText = this.record.toBreaker(); } -- 2.11.0