右側プロパティ開くとののバグfix

This commit is contained in:
2023-09-11 23:14:05 +09:00
parent b641c729c2
commit 59e6d33656

View File

@@ -71,6 +71,10 @@ const addNode=(node:IActionNode,inputPoint:string)=>{
}
const onNodeSelected=(node:IActionNode)=>{
//右パネルが開いている場合、自動閉じる
if(drawerRight.value && state.activeNode.id!==node.id){
drawerRight.value=false;
}
state.activeNode = node;
}