Browse Source
Feature/improve mode value labels in scraper configuration (#4274)
* Improve mode value labels
pull/4275/head
Thomas Kaul
2 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
2 deletions
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts
|
|
@ -88,8 +88,14 @@ export class AssetProfileDialog implements OnDestroy, OnInit { |
|
|
|
public isBenchmark = false; |
|
|
|
public marketDataItems: MarketData[] = []; |
|
|
|
public modeValues = [ |
|
|
|
{ value: 'lazy', viewValue: $localize`Lazy` }, |
|
|
|
{ value: 'instant', viewValue: $localize`Instant` } |
|
|
|
{ |
|
|
|
value: 'lazy', |
|
|
|
viewValue: $localize`Lazy` + ' (' + $localize`end of day` + ')' |
|
|
|
}, |
|
|
|
{ |
|
|
|
value: 'instant', |
|
|
|
viewValue: $localize`Instant` + ' (' + $localize`real-time` + ')' |
|
|
|
} |
|
|
|
]; |
|
|
|
public scraperConfiguationIsExpanded = signal(false); |
|
|
|
public sectors: { |
|
|
|