Browse Source
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
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
4 additions and
2 deletions
-
CHANGELOG.md
-
libs/ui/src/lib/activities-table/activities-table.component.html
-
libs/ui/src/lib/holdings-table/holdings-table.component.html
|
|
@ -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 |
|
|
|