Browse Source

Feature/rename job id column in jobs view of admin control panel (#5493)

* Rename job id column

* Update changelog
pull/5424/merge
Thomas Kaul 2 weeks ago
committed by GitHub
parent
commit
2698395cab
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/admin-jobs/admin-jobs.html

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Extended the variations of the interstitials for the subscription
- Renamed the job identifier column in the jobs queue view of the admin control panel
- Refactored the markets page to standalone
- Refactored the header component to standalone
- Refactored the rule component to standalone

2
apps/client/src/app/components/admin-jobs/admin-jobs.html

@ -19,7 +19,7 @@
<table class="gf-table w-100" mat-table [dataSource]="dataSource">
<ng-container matColumnDef="index">
<th *matHeaderCellDef class="px-1 py-2 text-right" mat-header-cell>
#
<ng-container i18n>Job ID</ng-container>
</th>
<td *matCellDef="let element" class="px-1 py-2 text-right" mat-cell>
{{ element.id }}

Loading…
Cancel
Save