From: Bill Erickson Date: Wed, 10 Jul 2019 15:51:53 +0000 (-0400) Subject: LP1834665 Flat text editor uses '$' delimiter X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=43dd20a8a94eb98cafde93b410a3863cd7a1d71a;p=working%2FEvergreen.git LP1834665 Flat text editor uses '$' delimiter Consistent with the AngJS flat text MARC editor, use '$' as the subfield delimiter instead of the default '‡'. Signed-off-by: Bill Erickson --- 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(); }