Browse Source

Fix template (#397)

pull/399/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
f558eb8de8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  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