Browse Source

Fix template

pull/397/head
Thomas 4 years ago
parent
commit
b979bb5399
  1. 4
      apps/client/src/app/components/positions-table/positions-table.component.html

4
apps/client/src/app/components/positions-table/positions-table.component.html

@ -83,10 +83,10 @@
*matRowDef="let row; columns: displayedColumns"
mat-row
[ngClass]="{
'cursor-pointer': !this.ignoreAssetClasses.includes(row.assetClass)
'cursor-pointer': !ignoreAssetClasses.includes(row.assetClass)
}"
(click)="
!this.ignoreAssetClasses.includes(row.assetClass) &&
!ignoreAssetClasses.includes(row.assetClass) &&
onOpenPositionDialog({ symbol: row.symbol })
"
></tr>

Loading…
Cancel
Save