Thomas Kaul
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts
|
@ -144,7 +144,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit { |
|
|
assetSubClass: this.assetProfile.assetSubClass ?? null, |
|
|
assetSubClass: this.assetProfile.assetSubClass ?? null, |
|
|
comment: this.assetProfile?.comment ?? '', |
|
|
comment: this.assetProfile?.comment ?? '', |
|
|
countries: JSON.stringify( |
|
|
countries: JSON.stringify( |
|
|
this.assetProfile?.countries.map(({ code, weight }) => { |
|
|
this.assetProfile?.countries?.map(({ code, weight }) => { |
|
|
return { code, weight }; |
|
|
return { code, weight }; |
|
|
}) ?? [] |
|
|
}) ?? [] |
|
|
), |
|
|
), |
|
|