LP1904036 Address copy improvements
authorBill Erickson <berickxx@gmail.com>
Tue, 27 Apr 2021 21:15:19 +0000 (17:15 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Fri, 28 Oct 2022 00:13:33 +0000 (20:13 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>

Open-ILS/src/eg2/src/app/staff/share/patron/summary.component.ts

index 11dfe00..b5b7087 100644 (file)
@@ -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 {