Browse Source

Move watchlist to general availability

pull/4653/head
Thomas Kaul 4 months ago
parent
commit
996bae23a5
  1. 12
      apps/client/src/app/pages/home/home-page.component.ts

12
apps/client/src/app/pages/home/home-page.component.ts

@ -48,18 +48,18 @@ export class HomePageComponent implements OnDestroy, OnInit {
label: $localize`Summary`, label: $localize`Summary`,
path: ['/home', 'summary'] path: ['/home', 'summary']
}, },
{
iconName: 'bookmark-outline',
label: $localize`Watchlist`,
path: ['/home', 'watchlist']
},
{ {
iconName: 'newspaper-outline', iconName: 'newspaper-outline',
label: $localize`Markets`, label: $localize`Markets`,
path: ['/home', 'market'] path: ['/home', 'market']
},
{
iconName: 'bookmark-outline',
label: $localize`Watchlist`,
path: ['/home', 'watchlist'],
showCondition: this.user?.settings?.isExperimentalFeatures
} }
]; ];
this.user = state.user; this.user = state.user;
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();

Loading…
Cancel
Save