@if (deviceType !== 'mobile' && !searchFormControl.value) {
/
} @if (searchFormControl.value) { } @else { }
@if (searchFormControl.value) {
@if (searchResults?.quickLinks?.length !== 0 || isLoading.quickLinks) {
Quick Links
@for ( searchResultItem of searchResults.quickLinks; track searchResultItem ) { } @if (isLoading.quickLinks) { }
} @if (searchResults?.holdings?.length !== 0 || isLoading.holdings) {
Holdings
@for ( searchResultItem of searchResults.holdings; track searchResultItem ) { } @if (isLoading.holdings) { }
} @if ( hasPermissionToAccessAdminControl && (searchResults?.assetProfiles?.length !== 0 || isLoading.assetProfiles) ) {
Asset Profiles
@for ( searchResultItem of searchResults.assetProfiles; track searchResultItem ) { } @if (isLoading.assetProfiles) { }
}
}
@if (!searchFormControl.value) {
Date Range @for (range of dateRangeOptions; track range) { {{ range.label }} }
Account @for (account of accounts; track account.id) {
@if (account.platform?.url) { } {{ account.name }}
}
Holding {{ filterForm.get('holding')?.value?.name }} @for (holding of holdings; track holding.name) {
{{ holding.name }}
{{ holding.symbol | gfSymbol }} ยท {{ holding.currency }}
}
Tag @for (tag of tags; track tag.id) { {{ tag.label }} }
Asset Class @for (assetClass of assetClasses; track assetClass.id) { {{ assetClass.label }} }
}