Browse Source

Pointer cursor if there is data

pull/4044/head
JoryHogeveen 9 months ago
parent
commit
2db90e0240
  1. 1
      libs/ui/src/lib/top-holdings/top-holdings.component.html

1
libs/ui/src/lib/top-holdings/top-holdings.component.html

@ -101,6 +101,7 @@
<tr <tr
*matRowDef="let element; columns: displayedColumns" *matRowDef="let element; columns: displayedColumns"
mat-row mat-row
[class.cursor-pointer]="element.parents.length > 0"
[class.expanded]="element.expand ?? false" [class.expanded]="element.expand ?? false"
(click)=" (click)="
element.expand ? (element.expand = false) : (element.expand = true) element.expand ? (element.expand = false) : (element.expand = true)

Loading…
Cancel
Save