Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/66bdb374e8d4a511d74d8118f4cdade667b21a3f You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

* Set icon columns to stick at the beginning

* Update changelog
pull/3384/head
Thomas Kaul 11 months 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