Browse Source

chore: adapt requested changes

Signed-off-by: Dominik Willner <th33xitus@gmail.com>
pull/3985/head
dw-0 10 months ago
parent
commit
389a499709
  1. 2
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/admin-jobs/admin-jobs.component.ts

2
CHANGELOG.md

@ -10,8 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### Changed
- Switched the `consistent-type-assertions` 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 - Switched the `consistent-generic-constructors` rule from `warn` to `error` in the `eslint` configuration
- Switched the `prefer-optional-chain` rule from `warn` to `error` in the `eslint` configuration
## 2.119.0 - 2024-10-26 ## 2.119.0 - 2024-10-26

2
apps/client/src/app/components/admin-jobs/admin-jobs.component.ts

@ -36,8 +36,8 @@ export class AdminJobsComponent implements OnDestroy, OnInit {
public DATA_GATHERING_QUEUE_PRIORITY_MEDIUM = public DATA_GATHERING_QUEUE_PRIORITY_MEDIUM =
DATA_GATHERING_QUEUE_PRIORITY_MEDIUM; DATA_GATHERING_QUEUE_PRIORITY_MEDIUM;
public defaultDateTimeFormat: string; public defaultDateTimeFormat: string;
public filterForm: FormGroup;
public dataSource = new MatTableDataSource<AdminJobs['jobs'][0]>(); public dataSource = new MatTableDataSource<AdminJobs['jobs'][0]>();
public filterForm: FormGroup;
public displayedColumns = [ public displayedColumns = [
'index', 'index',
'type', 'type',

Loading…
Cancel
Save