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('BrandComponent', () => {
void TestBed.configureTestingModule({
declarations: [BrandComponent],
}).compileComponents();
})
}),
);
beforeEach(() => {

View File

@@ -4,5 +4,7 @@ import {Component} from '@angular/core';
selector: 'app-brand',
templateUrl: './brand.component.html',
styleUrls: ['./brand.component.less'],
standalone: false,
})
export class BrandComponent {}
export class BrandComponent {
}

View File

@@ -21,4 +21,5 @@ const routes: Routes = [
declarations: [BrandComponent, NewUserComponent],
imports: [CommonModule, RouterModule.forChild(routes), LogoModule],
})
export class BrandModule {}
export class BrandModule {
}

View File

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

View File

@@ -7,6 +7,7 @@ import {User} from '../../../services/user/user';
selector: 'app-new-user',
templateUrl: './new-user.component.html',
styleUrls: ['./new-user.component.less'],
standalone: false,
})
export class NewUserComponent {
public user$: Observable<User | null> | null = null;