From 1479c1d44d24ff25d445c27f4ce856e62082a073 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Wed, 27 Apr 2022 08:20:09 -0500 Subject: [PATCH] Fixed tree nodes not being clickable on the edges --- src/features/trees/TreeNode.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/features/trees/TreeNode.vue b/src/features/trees/TreeNode.vue index b4b7522..a26f5a4 100644 --- a/src/features/trees/TreeNode.vue +++ b/src/features/trees/TreeNode.vue @@ -7,15 +7,15 @@ can: unref(canClick), ...unref(classes) }" + @click="onClick" + @mousedown="start" + @mouseleave="stop" + @mouseup="stop" + @touchstart="start" + @touchend="stop" + @touchcancel="stop" >