Browse Source

Hide holdings table to fix sorting

pull/3572/head
Thomas Kaul 1 year ago
parent
commit
10fd1c8497
  1. 5
      apps/client/src/app/components/home-holdings/home-holdings.html

5
apps/client/src/app/components/home-holdings/home-holdings.html

@ -41,7 +41,8 @@
[holdings]="holdings" [holdings]="holdings"
(treemapChartClicked)="onSymbolClicked($event)" (treemapChartClicked)="onSymbolClicked($event)"
/> />
} @else if (viewModeFormControl.value === 'TABLE') { }
<div [ngClass]="{ 'd-none': viewModeFormControl.value !== 'TABLE' }">
<gf-holdings-table <gf-holdings-table
[baseCurrency]="user?.settings?.baseCurrency" [baseCurrency]="user?.settings?.baseCurrency"
[deviceType]="deviceType" [deviceType]="deviceType"
@ -60,7 +61,7 @@
> >
</div> </div>
} }
} </div>
</div> </div>
</div> </div>
</div> </div>

Loading…
Cancel
Save