From 54fde0ef42c4a3c4773512067f9db6b77042f414 Mon Sep 17 00:00:00 2001 From: Sam Warren Date: Tue, 17 Sep 2024 11:02:56 -0600 Subject: [PATCH] Hide ORV Feature (#4276) --- .../account-profile.component.html | 10 ++++++---- .../account-profile.component.ts | 18 ++++++++++-------- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.html b/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.html index 5fb96c17ef..b8760a126e 100644 --- a/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.html +++ b/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.html @@ -363,7 +363,8 @@

Update your BCeID information

-
+ +

Collection Notice:

@@ -396,11 +397,12 @@

Collection Notice:

- + + \ No newline at end of file diff --git a/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.ts b/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.ts index 430b62a4cf..df052bc820 100644 --- a/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.ts +++ b/cllc-public-app/ClientApp/src/app/components/account-profile/account-profile.component.ts @@ -115,7 +115,8 @@ export class AccountProfileComponent extends FormBase implements OnInit { renewalType: string; @ViewChild('badgeTemplateDialog') badgeTemplateDialog: TemplateRef; - generatedOrvCode: string = `Verify Retailer` + // 2024-09-13: Temporary disabling this until further development work can be completed to support this feature. + // generatedOrvCode: string = `Verify Retailer` get contacts(): FormArray { return this.form.get("otherContacts") as FormArray; @@ -369,13 +370,14 @@ export class AccountProfileComponent extends FormBase implements OnInit { }); } - onCopy(): void { - this.clipboard.copy(this.generatedOrvCode); - this.snackBar.open('HTML copied to clipboard', null, { - duration: 2000, - }); - this.dialog.closeAll(); - } + // 2024-09-13: Temporary disabling this until further development work can be completed to support this feature. + // onCopy(): void { + // this.clipboard.copy(this.generatedOrvCode); + // this.snackBar.open('HTML copied to clipboard', null, { + // duration: 2000, + // }); + // this.dialog.closeAll(); + // } save(): Observable { const _tiedHouse = this.tiedHouseFormData || {};