Browse Source

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

* Generalize column label

* Update changelog
pull/4621/head
Thomas Kaul 1 day ago
committed by GitHub
parent
commit
34f191ef7a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 2
      libs/ui/src/lib/benchmark/benchmark.component.html

1
CHANGELOG.md

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

2
libs/ui/src/lib/benchmark/benchmark.component.html

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