From: Bill Erickson Date: Mon, 23 Dec 2019 22:33:05 +0000 (-0500) Subject: LP1852782 Reset authority validation after linking X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9f3c2229737fc8170a0bfc721b7d39bf04e5ecd7;p=contrib%2FConifer.git LP1852782 Reset authority validation after linking Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg --- 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) {