Browse Source
Feature/move chart of account detail dialog from experimental to general availability (#5351)
* Move chart from experimental to general availability
* Update changelog
pull/5363/head^2
Thomas Kaul
6 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
13 additions and
14 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
|
|
@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Moved the chart of the account detail dialog from experimental to general availability |
|
|
|
- Improved the dynamic numerical precision for various values in the account detail dialog |
|
|
|
- Extended the accounts endpoint by dividend and interest |
|
|
|
- Improved the language localization for Portuguese (`pt`) |
|
|
|
|
|
@ -20,20 +20,18 @@ |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
@if (user?.settings?.isExperimentalFeatures) { |
|
|
|
<div class="chart-container mb-3"> |
|
|
|
<gf-investment-chart |
|
|
|
class="h-100" |
|
|
|
[currency]="user?.settings?.baseCurrency" |
|
|
|
[historicalDataItems]="historicalDataItems" |
|
|
|
[isInPercent]=" |
|
|
|
data.hasImpersonationId || user.settings.isRestrictedView |
|
|
|
" |
|
|
|
[isLoading]="isLoadingChart" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
} |
|
|
|
<div class="chart-container mb-3"> |
|
|
|
<gf-investment-chart |
|
|
|
class="h-100" |
|
|
|
[currency]="user?.settings?.baseCurrency" |
|
|
|
[historicalDataItems]="historicalDataItems" |
|
|
|
[isInPercent]=" |
|
|
|
data.hasImpersonationId || user.settings.isRestrictedView |
|
|
|
" |
|
|
|
[isLoading]="isLoadingChart" |
|
|
|
[locale]="user?.settings?.locale" |
|
|
|
/> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="mb-3 row"> |
|
|
|
<div class="col-6 mb-3"> |
|
|
|