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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
1 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-jobs/admin-jobs.html
|
|
@ -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 |
|
|
|
|
|
@ -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 }} |
|
|
|