]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+reset-password/reset-password.component.ts
Translated using Weblate (Japanese)
[github/Chocobozzz/PeerTube.git] / client / src / app / +reset-password / reset-password.component.ts
index 11c5110fd73bacb31cbc4fc851faf40fc379f981..44216f978666a72809a2f5f9a0cbdbf82365301f 100644 (file)
@@ -3,7 +3,7 @@ import { ActivatedRoute, Router } from '@angular/router'
 import { Notifier, UserService } from '@app/core'
 import { RESET_PASSWORD_CONFIRM_VALIDATOR } from '@app/shared/form-validators/reset-password-validators'
 import { USER_PASSWORD_VALIDATOR } from '@app/shared/form-validators/user-validators'
-import { FormReactive, FormValidatorService } from '@app/shared/shared-forms'
+import { FormReactive, FormReactiveService } from '@app/shared/shared-forms'
 
 @Component({
   selector: 'my-login',
@@ -16,7 +16,7 @@ export class ResetPasswordComponent extends FormReactive implements OnInit {
   private verificationString: string
 
   constructor (
-    protected formValidatorService: FormValidatorService,
+    protected formReactiveService: FormReactiveService,
     private userService: UserService,
     private notifier: Notifier,
     private router: Router,