diff --git a/CHANGELOG.md b/CHANGELOG.md index 7143a55bb..9ade7507f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Switched the `consistent-generic-constructors` rule from `warn` to `error` in the `eslint` configuration - Switched the `consistent-type-assertions` rule from `warn` to `error` in the `eslint` configuration - Switched the `prefer-optional-chain` rule from `warn` to `error` in the `eslint` configuration - Switched the `consistent-generic-constructors` rule from `warn` to `error` in the `eslint` configuration diff --git a/apps/client/src/app/components/admin-jobs/admin-jobs.component.ts b/apps/client/src/app/components/admin-jobs/admin-jobs.component.ts index 2108d0761..577303d60 100644 --- a/apps/client/src/app/components/admin-jobs/admin-jobs.component.ts +++ b/apps/client/src/app/components/admin-jobs/admin-jobs.component.ts @@ -35,9 +35,10 @@ export class AdminJobsComponent implements OnDestroy, OnInit { DATA_GATHERING_QUEUE_PRIORITY_HIGH; public DATA_GATHERING_QUEUE_PRIORITY_MEDIUM = DATA_GATHERING_QUEUE_PRIORITY_MEDIUM; + + public dataSource = new MatTableDataSource(); public defaultDateTimeFormat: string; public filterForm: FormGroup; - public dataSource = new MatTableDataSource(); public displayedColumns = [ 'index', 'type',