Browse Source

Bugfix/set name column to sticky in table of benchmark component (#5095)

* Set name column to sticky

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

4
CHANGELOG.md

@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the language localization for Italian (`it`)
- Upgraded `prisma` from version `6.10.1` to `6.11.1`
### Fixed
- Set the name column to sticky in the table of the benchmark component
## 2.177.0 - 2025-07-03
### Added

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

@ -7,7 +7,7 @@
matSortDirection="asc"
[dataSource]="dataSource"
>
<ng-container matColumnDef="name">
<ng-container matColumnDef="name" sticky>
<th *matHeaderCellDef class="px-2" i18n mat-header-cell mat-sort-header>
Name
</th>

Loading…
Cancel
Save