aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/login/login.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-07-16 15:19:39 +0200
committerChocobozzz <me@florianbigard.com>2018-07-16 15:19:39 +0200
commit51d4bcada9ef290ec74b5ffea00635131254ad88 (patch)
treed3de152c37b99bae24a5ca7ab80f13b561defa85 /client/src/app/login/login.component.ts
parentf2bbd1e1b1eb662184b00e59c210042e5b39499e (diff)
downloadPeerTube-51d4bcada9ef290ec74b5ffea00635131254ad88.tar.gz
PeerTube-51d4bcada9ef290ec74b5ffea00635131254ad88.tar.zst
PeerTube-51d4bcada9ef290ec74b5ffea00635131254ad88.zip
Fix forgot password message regarding email
Diffstat (limited to 'client/src/app/login/login.component.ts')
-rw-r--r--client/src/app/login/login.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/login/login.component.ts b/client/src/app/login/login.component.ts
index a91522db3..56f992b5d 100644
--- a/client/src/app/login/login.component.ts
+++ b/client/src/app/login/login.component.ts
@@ -64,7 +64,7 @@ export class LoginComponent extends FormReactive implements OnInit {
64 .subscribe( 64 .subscribe(
65 res => { 65 res => {
66 const message = this.i18n( 66 const message = this.i18n(
67 'An email with the reset password instructions will be sent to {{ email }}.', 67 'An email with the reset password instructions will be sent to {{email}}.',
68 { email: this.forgotPasswordEmail } 68 { email: this.forgotPasswordEmail }
69 ) 69 )
70 this.notificationsService.success(this.i18n('Success'), message) 70 this.notificationsService.success(this.i18n('Success'), message)