Feature/add absolute change column to holdings table (#3378)

* Add absolute change column

* Update changelog
pull/3384/head
Thomas Kaul 3 weeks ago committed by GitHub
parent 2090db1199
commit 1fd836194f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added the absolute change column to the holdings table on the home page
### Changed
- Increased the number of attempts of queue jobs from `10` to `12` (fail later)

@ -109,7 +109,30 @@
</td>
</ng-container>
<ng-container matColumnDef="performance" stickyEnd>
<ng-container matColumnDef="performance">
<th
*matHeaderCellDef
class="justify-content-end px-1"
mat-header-cell
mat-sort-header="netPerformanceWithCurrencyEffect"
>
<ng-container i18n>Change</ng-container>
</th>
<td *matCellDef="let element" class="px-1" mat-cell>
<div class="d-flex justify-content-end">
<gf-value
[colorizeSign]="true"
[isCurrency]="true"
[locale]="locale"
[value]="
isLoading ? undefined : element.netPerformanceWithCurrencyEffect
"
/>
</div>
</td>
</ng-container>
<ng-container matColumnDef="performanceInPercentage" stickyEnd>
<th
*matHeaderCellDef
class="justify-content-end px-1"

@ -84,7 +84,12 @@ export class GfHoldingsTableComponent implements OnChanges, OnDestroy, OnInit {
}
this.displayedColumns.push('allocationInPercentage');
this.displayedColumns.push('performance');
if (this.hasPermissionToShowValues) {
this.displayedColumns.push('performance');
}
this.displayedColumns.push('performanceInPercentage');
this.isLoading = true;

Loading…
Cancel
Save