Showing
1 changed file
with
1 additions
and
1 deletions
@@ -150,7 +150,7 @@ export class NavTreeComponent implements OnInit { | @@ -150,7 +150,7 @@ export class NavTreeComponent implements OnInit { | ||
150 | this.treeElement.on('changed.jstree', (e, data) => { | 150 | this.treeElement.on('changed.jstree', (e, data) => { |
151 | const node: NavTreeNode = data.instance.get_selected(true)[0]; | 151 | const node: NavTreeNode = data.instance.get_selected(true)[0]; |
152 | if (this.onNodeSelected) { | 152 | if (this.onNodeSelected) { |
153 | - this.onNodeSelected(node, e); | 153 | + this.onNodeSelected(node, e as Event); |
154 | } | 154 | } |
155 | }); | 155 | }); |
156 | 156 |