Fixed #105 - TreeNode is not toggled with left and right arrow keys

pull/132/head
cagataycivici 2019-12-09 17:31:42 +03:00
parent 9759e61937
commit 05c94bde8f
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ export default {
//right-left arrows
case 37:
case 39:
this.$emit('toggle', this.node);
this.$emit('node-toggle', this.node);
event.preventDefault();
break;