Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(treelist): Restored test for node.isHidden
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq authored and joshuawilson committed Apr 5, 2017
1 parent 65902a6 commit 6e2f4c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/treelist/treelist.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
let-node="node"
let-index="index"
let-templates="templates">
<div class="tree-node tree-node-level-{{ node.level }}"
<div *ngIf="node.isHidden !== true"
class="tree-node tree-node-level-{{ node.level }}"
[ngClass]="node.getClass()"
[class.tree-node-expanded]="node.isExpanded && node.hasChildren"
[class.tree-node-collapsed]="node.isCollapsed && node.hasChildren"
Expand Down

0 comments on commit 6e2f4c4

Please sign in to comment.