|
|
@ -153,9 +153,10 @@ export class GfImportActivitiesDialogComponent { |
|
|
}) |
|
|
}) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
.pipe(takeUntilDestroyed(this.destroyRef)) |
|
|
.subscribe(({ holdings }) => { |
|
|
.subscribe(({ holdings }) => { |
|
|
this.holdings = sortBy(holdings, ({ name }) => { |
|
|
this.holdings = sortBy(holdings, ({ assetProfile }) => { |
|
|
return name.toLowerCase(); |
|
|
return assetProfile.name.toLowerCase(); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
this.assetProfileForm.get('assetProfileIdentifier').enable(); |
|
|
this.assetProfileForm.get('assetProfileIdentifier').enable(); |
|
|
|
|
|
|
|
|
this.isLoading = false; |
|
|
this.isLoading = false; |
|
|
|