Commit d99c2a9f35bb88528311f7858a77a882a17a5fff

Authored by Igor Kulikov
1 parent 2807c497

Minor changes

@@ -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