update angular
This commit is contained in:
@@ -11,7 +11,7 @@ describe('BrandComponent', () => {
|
||||
void TestBed.configureTestingModule({
|
||||
declarations: [BrandComponent],
|
||||
}).compileComponents();
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
beforeEach(() => {
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
|
||||
@@ -21,4 +21,5 @@ const routes: Routes = [
|
||||
declarations: [BrandComponent, NewUserComponent],
|
||||
imports: [CommonModule, RouterModule.forChild(routes), LogoModule],
|
||||
})
|
||||
export class BrandModule {}
|
||||
export class BrandModule {
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ describe('NewUserComponent', () => {
|
||||
void TestBed.configureTestingModule({
|
||||
declarations: [NewUserComponent],
|
||||
}).compileComponents();
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
beforeEach(() => {
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user