From 6d1215e308f44d68360c365d2a01bce2866b4878 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Tue, 14 Apr 2026 19:59:55 +0200 Subject: [PATCH] Reordering --- .../asset-profile-dialog/asset-profile-dialog.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts index 3431df85d..76f6cb9c2 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts +++ b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts @@ -178,8 +178,8 @@ export class GfAssetProfileDialogComponent implements OnInit { protected readonly assetProfileIdentifierForm = this.formBuilder.group( { assetProfileIdentifier: new FormControl< - AssetProfileIdentifier | { symbol: null; dataSource: null } - >({ symbol: null, dataSource: null }, [Validators.required]) + AssetProfileIdentifier | { dataSource: null; symbol: null } + >({ dataSource: null, symbol: null }, [Validators.required]) }, { validators: (control) => {