|
|
@ -848,13 +848,12 @@ export class GfAssetProfileDialogComponent implements OnInit { |
|
|
takeUntilDestroyed(this.destroyRef) |
|
|
takeUntilDestroyed(this.destroyRef) |
|
|
) |
|
|
) |
|
|
.subscribe(({ price }) => { |
|
|
.subscribe(({ price }) => { |
|
|
|
|
|
const currency = this.assetProfileForm.controls.currency.value; |
|
|
|
|
|
|
|
|
this.notificationService.alert({ |
|
|
this.notificationService.alert({ |
|
|
title: |
|
|
title: `${$localize`The current market price is`} ${price}${ |
|
|
$localize`The current market price is` + |
|
|
currency ? ` ${currency}` : '' |
|
|
' ' + |
|
|
}` |
|
|
price + |
|
|
|
|
|
' ' + |
|
|
|
|
|
this.assetProfileForm.controls.currency.value |
|
|
|
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|
|