Skip to content

Commit

Permalink
feat: Se arreglan las "cuñas" de los nodos del árbol de cuentas conta…
Browse files Browse the repository at this point in the history
…bles #122
  • Loading branch information
Jeisson005 committed Sep 10, 2021
1 parent 1d07634 commit 0d80e6d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@
</th>
<td class="aligned-code" nbTreeGridCell *nbTreeGridCellDef="let row">
<ngx-nb-fs-icon [kind]="row.data.kind" [expanded]="row.expanded"></ngx-nb-fs-icon>
<span [ngClass]="{
'nb-chevron-down': row.expanded,
'nb-chevron-right': !row.expanded
<span *ngIf="row.hasChildren()" class="fas" [ngClass]="{
'fa-chevron-down': row.expanded,
'fa-chevron-right': !row.expanded
}" aria-hidden="true">
</span>{{ row.data[customColumn] }}
</td>
Expand Down

0 comments on commit 0d80e6d

Please sign in to comment.