Browse Source

Merge remote-tracking branch 'origin/main' into feature/extract-tags-selector

pull/4256/head
KenTandrian 7 months ago
parent
commit
4b301b56dd
  1. 4
      CHANGELOG.md
  2. 2
      apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

4
CHANGELOG.md

@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Upgraded `bull` from version `4.16.4` to `4.16.5`
- Upgraded `ng-extract-i18n-merge` from version `2.13.1` to `2.14.1`
### Fixed
- Fixed the dynamic numerical precision for cryptocurrencies in the holding detail dialog
## 2.136.0 - 2025-01-24
### Added

2
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.component.ts

@ -286,7 +286,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
if (Number.isInteger(this.quantity)) {
this.quantityPrecision = 0;
} else if (this.SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
} else if (SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
if (this.quantity < 1) {
this.quantityPrecision = 7;
} else if (this.quantity < 1000) {

Loading…
Cancel
Save