Feature/set icon columns of tables to stick at beginning (#3377)

* Set icon columns to stick at the beginning

* Update changelog
pull/3384/head
Thomas Kaul 4 weeks ago committed by GitHub
parent 4ad4fa2b30
commit 66bdb374e8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Set the icon column of the activities table to stick at the beginning
- Set the icon column of the holdings table to stick at the beginning
- Increased the number of attempts of queue jobs from `10` to `12` (fail later)
- Upgraded `ionicons` from version `7.3.0` to `7.4.0`

@ -119,7 +119,7 @@
</td>
</ng-container>
<ng-container matColumnDef="icon">
<ng-container matColumnDef="icon" sticky>
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
<gf-asset-profile-icon

@ -7,7 +7,7 @@
matSortDirection="desc"
[dataSource]="dataSource"
>
<ng-container matColumnDef="icon">
<ng-container matColumnDef="icon" sticky>
<th *matHeaderCellDef class="px-1" mat-header-cell></th>
<td *matCellDef="let element" class="px-1 text-center" mat-cell>
<gf-asset-profile-icon

Loading…
Cancel
Save