Browse Source
Bugfix/add missing isActive flag in asset profile of custom currency (#4557)
* Add missing isActive flag
* Update changelog
pull/4559/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
6 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/admin.service.ts
|
|
@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
- Upgraded `chart.js` from version `4.4.7` to `4.4.9` |
|
|
|
- Upgraded `uuid` from version `11.0.5` to `11.1.0` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the functionality to open an asset profile of a custom currency in the admin control panel |
|
|
|
|
|
|
|
## 2.152.1 - 2025-04-17 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
@ -451,7 +451,8 @@ export class AdminService { |
|
|
|
currency, |
|
|
|
dataSource, |
|
|
|
dateOfFirstActivity, |
|
|
|
symbol |
|
|
|
symbol, |
|
|
|
isActive: true |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|