|
|
@ -18,14 +18,20 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@if (user?.settings?.isExperimentalFeatures) { |
|
|
|
<div class="mb-5 row"> |
|
|
|
<div class="col"> |
|
|
|
<mat-card appearance="outlined" class="mb-3"> |
|
|
|
<mat-card-content> |
|
|
|
<div class="d-flex py-1"> |
|
|
|
<div class="flex-grow-1 mr-2 text-truncate" i18n> |
|
|
|
Absolute Asset Performance |
|
|
|
<div |
|
|
|
class="align-items-center d-flex flex-grow-1 mr-2 text-truncate" |
|
|
|
i18n |
|
|
|
> |
|
|
|
<span>Absolute Asset Performance</span> |
|
|
|
<gf-premium-indicator |
|
|
|
*ngIf="user?.subscription?.type === 'Basic'" |
|
|
|
class="ml-1" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div class="d-flex justify-content-end"> |
|
|
|
<gf-value |
|
|
@ -62,8 +68,15 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="d-flex py-1"> |
|
|
|
<div class="flex-grow-1 mr-2 text-truncate" i18n> |
|
|
|
Absolute Currency Performance |
|
|
|
<div |
|
|
|
class="align-items-center d-flex flex-grow-1 mr-2 text-truncate" |
|
|
|
i18n |
|
|
|
> |
|
|
|
<span>Absolute Currency Performance</span> |
|
|
|
<gf-premium-indicator |
|
|
|
*ngIf="user?.subscription?.type === 'Basic'" |
|
|
|
class="ml-1" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
<div class="d-flex justify-content-end"> |
|
|
|
<gf-value |
|
|
@ -75,8 +88,7 @@ |
|
|
|
[value]=" |
|
|
|
isLoadingInvestmentChart |
|
|
|
? undefined |
|
|
|
: performance?.currentNetPerformanceWithCurrencyEffect === |
|
|
|
null |
|
|
|
: performance?.currentNetPerformance === null |
|
|
|
? null |
|
|
|
: performance?.currentNetPerformanceWithCurrencyEffect - |
|
|
|
performance?.currentNetPerformance |
|
|
@ -98,6 +110,8 @@ |
|
|
|
[value]=" |
|
|
|
isLoadingInvestmentChart |
|
|
|
? undefined |
|
|
|
: performance?.currentNetPerformancePercent === null |
|
|
|
? null |
|
|
|
: performance?.currentNetPerformancePercentWithCurrencyEffect - |
|
|
|
performance?.currentNetPerformancePercent |
|
|
|
" |
|
|
@ -147,7 +161,6 @@ |
|
|
|
</mat-card> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
} |
|
|
|
|
|
|
|
<div class="mb-5 row"> |
|
|
|
<div class="col-md-6"> |
|
|
|