We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2609062 commit fc681b6Copy full SHA for fc681b6
projects/igniteui-angular/src/lib/tree/README.md
@@ -20,7 +20,7 @@ The specification for the tree can be found [here](https://github.com/IgniteUI/i
20
{{ node.text }}
21
<img [src]="node.image" alt="node.imageAlt" />
22
<igx-tree-node *ngFor="let child of node.children" [data]="child" [expanded]="isNodeExpanded(child)" [selected]="isNodeSelected(child)">
23
- {{ child.text }}
+ {{ child.text }}
24
<igx-tree-node *ngFor="let leafChild of child.children" [data]="leafChild" [expanded]="isNodeExpanded(leafChild)" [selected]="isNodeSelected(leafChild)">
25
<a igxTreeNodeLink href="{{leafChild.location}}" target="_blank">{{ leafChild.text }}</a>
26
</igx-tree-node>
0 commit comments