Browse Source
Task/improve notification of scraper configuration (#7588)
Improve notification
pull/7586/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
6 deletions
-
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts
|
|
|
@ -848,13 +848,12 @@ export class GfAssetProfileDialogComponent implements OnInit { |
|
|
|
takeUntilDestroyed(this.destroyRef) |
|
|
|
) |
|
|
|
.subscribe(({ price }) => { |
|
|
|
const currency = this.assetProfileForm.controls.currency.value; |
|
|
|
|
|
|
|
this.notificationService.alert({ |
|
|
|
title: |
|
|
|
$localize`The current market price is` + |
|
|
|
' ' + |
|
|
|
price + |
|
|
|
' ' + |
|
|
|
this.assetProfileForm.controls.currency.value |
|
|
|
title: `${$localize`The current market price is`} ${price}${ |
|
|
|
currency ? ` ${currency}` : '' |
|
|
|
}` |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
|