Browse Source
Feature/change column label in benchmark component (#4616)
* Generalize column label
* Update changelog
pull/4621/head
Thomas Kaul
2 days 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
-
libs/ui/src/lib/benchmark/benchmark.component.html
|
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
|
|
|
|
|
|
|
|
- Changed the column label from _Index_ to _Name_ in the benchmark component |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
|
## 2.156.0 - 2025-04-27 |
|
|
## 2.156.0 - 2025-04-27 |
|
|
|
@ -1,6 +1,6 @@ |
|
|
<table class="gf-table w-100" mat-table [dataSource]="benchmarks"> |
|
|
<table class="gf-table w-100" mat-table [dataSource]="benchmarks"> |
|
|
<ng-container matColumnDef="name"> |
|
|
<ng-container matColumnDef="name"> |
|
|
<th *matHeaderCellDef class="px-2" i18n mat-header-cell>Index</th> |
|
|
<th *matHeaderCellDef class="px-2" i18n mat-header-cell>Name</th> |
|
|
<td *matCellDef="let element" class="px-2" mat-cell> |
|
|
<td *matCellDef="let element" class="px-2" mat-cell> |
|
|
{{ element?.name }} |
|
|
{{ element?.name }} |
|
|
</td> |
|
|
</td> |
|
|