Browse Source
Bugfix/handling of string inputs in form of asset profile dialog (#6834)
* Fix string inputs handling
* Update changelog
pull/6836/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
3 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts
|
|
|
@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Resolved a validation error with an empty URL in the asset profile details dialog of the admin control panel |
|
|
|
- Resolved an issue where charts and components defaulted to _Roboto_ instead of the preconfigured _Inter_ font family |
|
|
|
|
|
|
|
## 3.1.0 - 2026-04-29 |
|
|
|
|
|
|
|
@ -575,13 +575,13 @@ export class GfAssetProfileDialogComponent implements OnInit { |
|
|
|
assetClass: this.assetProfileForm.controls.assetClass.value ?? undefined, |
|
|
|
assetSubClass: |
|
|
|
this.assetProfileForm.controls.assetSubClass.value ?? undefined, |
|
|
|
comment: this.assetProfileForm.controls.comment.value ?? undefined, |
|
|
|
comment: this.assetProfileForm.controls.comment.value || undefined, |
|
|
|
currency: this.assetProfileForm.controls.currency.value ?? undefined, |
|
|
|
isActive: isBoolean(this.assetProfileForm.controls.isActive.value) |
|
|
|
? this.assetProfileForm.controls.isActive.value |
|
|
|
: undefined, |
|
|
|
name: this.assetProfileForm.controls.name.value ?? undefined, |
|
|
|
url: this.assetProfileForm.controls.url.value ?? undefined |
|
|
|
name: this.assetProfileForm.controls.name.value || undefined, |
|
|
|
url: this.assetProfileForm.controls.url.value || undefined |
|
|
|
}; |
|
|
|
|
|
|
|
try { |
|
|
|
|