From f29f201a4f4164aefb748731488e61bf469f8ced Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Fri, 18 Apr 2025 14:04:39 +0200 Subject: [PATCH] Bugfix/add missing isActive flag in asset profile of custom currency (#4557) * Add missing isActive flag * Update changelog --- CHANGELOG.md | 4 ++++ apps/api/src/app/admin/admin.service.ts | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dd111fd7..2b3171dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/apps/api/src/app/admin/admin.service.ts b/apps/api/src/app/admin/admin.service.ts index f77d50aa..ccbec46f 100644 --- a/apps/api/src/app/admin/admin.service.ts +++ b/apps/api/src/app/admin/admin.service.ts @@ -451,7 +451,8 @@ export class AdminService { currency, dataSource, dateOfFirstActivity, - symbol + symbol, + isActive: true } }; }