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
@@ -8,14 +8,12 @@ describe('EntriesComponent', () => {
let component: EntriesComponent;
let fixture: ComponentFixture<EntriesComponent>;
beforeEach(
waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule, RouterTestingModule],
declarations: [EntriesComponent],
}).compileComponents();
}),
);
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [HttpClientModule, RouterTestingModule],
declarations: [EntriesComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(EntriesComponent);
@@ -32,7 +32,11 @@ export class EntriesComponent implements OnInit {
posted: boolean | null = null;
issue: boolean = false;
constructor(private route: ActivatedRoute, private router: Router, private fb: UntypedFormBuilder) {
constructor(
private route: ActivatedRoute,
private router: Router,
private fb: UntypedFormBuilder,
) {
this.form = this.fb.group({
startDate: '',
finishDate: '',