Forgot to lint earlier

This commit is contained in:
2022-07-11 20:14:22 +05:30
parent d44c5b3e02
commit facf2df91e
69 changed files with 411 additions and 424 deletions

View File

@ -9,14 +9,12 @@ describe('EmployeeDetailComponent', () => {
let component: EmployeeDetailComponent;
let fixture: ComponentFixture<EmployeeDetailComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [MatDialogModule, ReactiveFormsModule, RouterTestingModule],
declarations: [EmployeeDetailComponent],
}).compileComponents();
}),
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [MatDialogModule, ReactiveFormsModule, RouterTestingModule],
declarations: [EmployeeDetailComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(EmployeeDetailComponent);

View File

@ -37,7 +37,11 @@ export class EmployeeListComponent implements OnInit, AfterViewInit {
'leavingDate',
];
constructor(private route: ActivatedRoute, private fb: UntypedFormBuilder, private toCsv: ToCsvService) {
constructor(
private route: ActivatedRoute,
private fb: UntypedFormBuilder,
private toCsv: ToCsvService,
) {
this.form = this.fb.group({
filter: '',
});