aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts2
-rw-r--r--client/src/app/signup/signup.component.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
index 3f9205460..3ffcc6c31 100644
--- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
+++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
@@ -168,7 +168,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit {
168 'Please type "I understand the {{ customizationsText }} I set" to confirm.', 168 'Please type "I understand the {{ customizationsText }} I set" to confirm.',
169 { customizationsText } 169 { customizationsText }
170 ) 170 )
171 const expectedInputValue = this.i18n('I understand the {{ customizationsText }} I set', { customizationsText}) 171 const expectedInputValue = this.i18n('I understand the {{ customizationsText }} I set', { customizationsText })
172 172
173 const confirmRes = await this.confirmService.confirmWithInput(message, label, expectedInputValue) 173 const confirmRes = await this.confirmService.confirmWithInput(message, label, expectedInputValue)
174 if (confirmRes === false) return 174 if (confirmRes === false) return
diff --git a/client/src/app/signup/signup.component.ts b/client/src/app/signup/signup.component.ts
index 4a49ead50..72a0c045b 100644
--- a/client/src/app/signup/signup.component.ts
+++ b/client/src/app/signup/signup.component.ts
@@ -84,7 +84,7 @@ export class SignupComponent extends FormReactive implements OnInit {
84 () => { 84 () => {
85 this.notificationsService.success( 85 this.notificationsService.success(
86 this.i18n('Success'), 86 this.i18n('Success'),
87 this.i18n('Registration for {{ username }} complete.', { username: userCreate.username}) 87 this.i18n('Registration for {{ username }} complete.', { username: userCreate.username })
88 ) 88 )
89 this.redirectService.redirectToHomepage() 89 this.redirectService.redirectToHomepage()
90 }, 90 },