diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b700067c..ad6854433 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,8 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Reused the toggle component on the portfolio holdings page +- Extended the toggle component to support a disabled state - Extended the toggle component to support icons +- Reused the toggle component on the portfolio holdings page ## 3.46.0 - 2026-08-09 diff --git a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts b/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts index 8fc012488..314fd21b5 100644 --- a/apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts +++ b/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}` : '' + }` }); }); } diff --git a/libs/ui/src/lib/carousel/carousel.component.html b/libs/ui/src/lib/carousel/carousel.component.html index 3c0945483..7c9bf50f3 100644 --- a/libs/ui/src/lib/carousel/carousel.component.html +++ b/libs/ui/src/lib/carousel/carousel.component.html @@ -1,4 +1,4 @@ -@if (this.showPrevArrow) { +@if (showPrevArrow) {