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
parent
commit
33132e57d9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 26
      apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html

1
CHANGELOG.md

@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ### 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 - Improved the dynamic numerical precision for various values in the account detail dialog
- Extended the accounts endpoint by dividend and interest - Extended the accounts endpoint by dividend and interest
- Improved the language localization for Portuguese (`pt`) - Improved the language localization for Portuguese (`pt`)

26
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html

@ -20,20 +20,18 @@
</div> </div>
</div> </div>
@if (user?.settings?.isExperimentalFeatures) { <div class="chart-container mb-3">
<div class="chart-container mb-3"> <gf-investment-chart
<gf-investment-chart class="h-100"
class="h-100" [currency]="user?.settings?.baseCurrency"
[currency]="user?.settings?.baseCurrency" [historicalDataItems]="historicalDataItems"
[historicalDataItems]="historicalDataItems" [isInPercent]="
[isInPercent]=" data.hasImpersonationId || user.settings.isRestrictedView
data.hasImpersonationId || user.settings.isRestrictedView "
" [isLoading]="isLoadingChart"
[isLoading]="isLoadingChart" [locale]="user?.settings?.locale"
[locale]="user?.settings?.locale" />
/> </div>
</div>
}
<div class="mb-3 row"> <div class="mb-3 row">
<div class="col-6 mb-3"> <div class="col-6 mb-3">

Loading…
Cancel
Save