diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts index d230331e9..b1f600575 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts @@ -85,7 +85,6 @@ export class AllocationsPageComponent implements OnDestroy, OnInit { public user: User; - private readonly SEARCH_PLACEHOLDER = 'Filter by account or tag...'; private unsubscribeSubject = new Subject(); public constructor( @@ -133,7 +132,9 @@ export class AllocationsPageComponent implements OnDestroy, OnInit { this.isLoading = true; this.activeFilters = filters; this.placeholder = - this.activeFilters.length <= 0 ? this.SEARCH_PLACEHOLDER : ''; + this.activeFilters.length <= 0 + ? $localize`Filter by account or tag...` + : ''; return this.dataService.fetchPortfolioDetails({ filters: this.activeFilters