Fix hide text toggle on send access (#7028)
Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
parent
06841e5942
commit
a79b4e182f
|
@ -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
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue