Skip to content

Commit cb520d4

Browse files
author
Rytis Ilciukas
committed
fix(tree): invalid node property used in HTML
1 parent b4c8443 commit cb520d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/demo-app/tree/checklist-tree-demo/checklist-nested-tree-demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<mat-nested-tree-node *matTreeNodeDef="let node">
33
<div class="mat-tree-node">
44
<button mat-icon-button matTreeNodeToggle
5-
[attr.aria-label]="'toggle ' + node.filename"
5+
[attr.aria-label]="'toggle ' + node.item"
66
[disabled]="!node.children.value.length">
77
<mat-icon *ngIf="node.children.value.length">
88
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}

0 commit comments

Comments
 (0)