Thomas Kaul
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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> |
|
|
|