Browse Source

Reordering

pull/6722/head
Thomas Kaul 1 month ago
parent
commit
6d1215e308
  1. 4
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts

4
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) => {

Loading…
Cancel
Save