From 662d983074ef3784de4a77f03fc9604876c6c59c Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 27 Apr 2021 17:15:19 -0400 Subject: [PATCH] LP1904036 Address copy improvements Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts b/Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts index 11dfe0008d..b5b708765c 100644 --- a/Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts @@ -62,6 +62,7 @@ export class PatronSummaryComponent implements OnInit { // Using node.style instead of *ngIf in hopes it // will be quicker, so the user never sees the textarea. node.style.visibility = 'visible'; + node.style.display = 'block'; node.focus(); node.select(); @@ -70,6 +71,7 @@ export class PatronSummaryComponent implements OnInit { } node.style.visibility = 'hidden'; + node.style.display = 'none'; } orgSn(orgId: number): string { -- 2.11.0