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

* Generalize column label

* Update changelog
pull/4621/head
Thomas Kaul 11 months ago committed by GitHub
parent fe1df8095a
commit 34f191ef7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

@ -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>

Loading…
Cancel
Save