From a79b4e182f516871dab0395487b59eb0b3514ecd Mon Sep 17 00:00:00 2001 From: Daniel James Smith <2670567+djsmith85@users.noreply.github.com> Date: Thu, 30 Nov 2023 17:07:25 +0100 Subject: [PATCH] Fix hide text toggle on send access (#7028) Co-authored-by: Daniel James Smith --- apps/web/src/app/tools/send/send-access-text.component.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/web/src/app/tools/send/send-access-text.component.ts b/apps/web/src/app/tools/send/send-access-text.component.ts index 755048f2bc..0843c7b63a 100644 --- a/apps/web/src/app/tools/send/send-access-text.component.ts +++ b/apps/web/src/app/tools/send/send-access-text.component.ts @@ -55,5 +55,8 @@ export class SendAccessTextComponent { protected toggleText() { this.showText = !this.showText; + this.formGroup.controls.sendText.patchValue( + this.showText ? this.send.text.text : this.send.text.maskedText + ); } }