Feature/change column label in benchmark component (#4616)

* Generalize column label

* Update changelog
This commit is contained in:
Thomas Kaul 2025-04-28 18:53:55 +02:00 committed by GitHub
parent fe1df8095a
commit 34f191ef7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Changed the column label from _Index_ to _Name_ in the benchmark component
- Improved the language localization for German (`de`)
## 2.156.0 - 2025-04-27

View File

@ -1,6 +1,6 @@
<table class="gf-table w-100" mat-table [dataSource]="benchmarks">
<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>
{{ element?.name }}
</td>