Skip to content

Commit

Permalink
URM-234831
Browse files Browse the repository at this point in the history
Correct separator between NACSIS-CAT’s PHYSP and PHYSI subfields from semicolon sign to colon sign.
  • Loading branch information
DoritcExl committed Feb 12, 2025
1 parent cfbbe95 commit 0005db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudapp/src/app/catalog/results-types/monographs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export class MonographFullDisplay extends IDisplayLines {
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSP).build());
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSI).build());
fieldsArray.push(new ViewFieldBuilder().content(this.record.PHYSS).build());
fieldsArray = this.setSeparator(fieldsArray, ";");
fieldsArray = this.setSeparator(fieldsArray, ":");
fieldsArray.push(new ViewFieldBuilder().label("+").content(this.record.PHYSA).build());
this.addLine(new ViewFieldBuilder().label("PHYS").build(), fieldsArray);
this.record.VT?.forEach(vt=>{
Expand Down

0 comments on commit 0005db9

Please sign in to comment.