From 9f3c2229737fc8170a0bfc721b7d39bf04e5ecd7 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 23 Dec 2019 17:33:05 -0500 Subject: [PATCH] LP1852782 Reset authority validation after linking Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg --- .../share/marc-edit/authority-linking-dialog.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/authority-linking-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/authority-linking-dialog.component.ts index 1c7d3a5d1c..6504f7dec7 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/marc-edit/authority-linking-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/marc-edit/authority-linking-dialog.component.ts @@ -155,6 +155,10 @@ export class AuthorityLinkingDialogComponent } this.context.insertSubfield(this.bibField, ['0', `(${this.cni})${authId}`, this.bibField.subfields.length]); + + // Reset the validation state. + this.bibField.authChecked = null; + this.bibField.authValid = null; } createNewAuthority(editFirst?: boolean) { -- 2.43.2