update angular

This commit is contained in:
2025-01-02 15:01:59 +01:00
parent 73d3ecfd42
commit 802c309679
199 changed files with 13745 additions and 11691 deletions

View File

@@ -11,7 +11,7 @@ describe('PasswordComponent', () => {
void TestBed.configureTestingModule({
declarations: [PasswordComponent],
}).compileComponents();
})
}),
);
beforeEach(() => {

View File

@@ -8,6 +8,7 @@ import {faWindowRestore} from '@fortawesome/free-solid-svg-icons';
selector: 'app-password',
templateUrl: './password.component.html',
styleUrls: ['./password.component.less'],
standalone: false,
})
export class PasswordComponent implements OnInit {
public form: UntypedFormGroup = new UntypedFormGroup({
@@ -17,7 +18,8 @@ export class PasswordComponent implements OnInit {
public errorMessage = '';
public faNewPassword = faWindowRestore;
public constructor(public userService: UserService, private router: Router) {}
public constructor(public userService: UserService, private router: Router) {
}
public ngOnInit(): void {
this.form.reset();