From 59e6d336566a94bd39e3841d7710a8a9e9664081 Mon Sep 17 00:00:00 2001 From: "maxiaozhe@alicorns.co.jp" Date: Mon, 11 Sep 2023 23:14:05 +0900 Subject: [PATCH] =?UTF-8?q?=E5=8F=B3=E5=81=B4=E3=83=97=E3=83=AD=E3=83=91?= =?UTF-8?q?=E3=83=86=E3=82=A3=E9=96=8B=E3=81=8F=E3=81=A8=E3=81=AE=E3=81=AE?= =?UTF-8?q?=E3=83=90=E3=82=B0fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/FlowChartTest.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/src/pages/FlowChartTest.vue b/frontend/src/pages/FlowChartTest.vue index f994a0a..3aa43e6 100644 --- a/frontend/src/pages/FlowChartTest.vue +++ b/frontend/src/pages/FlowChartTest.vue @@ -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; }