Skip to content

Commit 954cf76

Browse files
authored
Bugfix/dynamic numerical precision for cryptocurrencies in holding detail dialog (ghostfolio#4255)
* fix(ui): dynamic numerical precision of quantity for cryptocurrencies * Update changelog
1 parent fa27a05 commit 954cf76

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Upgraded `bull` from version `4.16.4` to `4.16.5`
1515
- Upgraded `ng-extract-i18n-merge` from version `2.13.1` to `2.14.1`
1616

17+
### Fixed
18+
19+
- Fixed the dynamic numerical precision for cryptocurrencies in the holding detail dialog
20+
1721
## 2.136.0 - 2025-01-24
1822

1923
### Added

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export class GfHoldingDetailDialogComponent implements OnDestroy, OnInit {
296296

297297
if (Number.isInteger(this.quantity)) {
298298
this.quantityPrecision = 0;
299-
} else if (this.SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
299+
} else if (SymbolProfile?.assetSubClass === 'CRYPTOCURRENCY') {
300300
if (this.quantity < 1) {
301301
this.quantityPrecision = 7;
302302
} else if (this.quantity < 1000) {

0 commit comments

Comments
 (0)