From b97728990f4d1f60c39f4f1283c6334f0f46214d Mon Sep 17 00:00:00 2001 From: shaohuzhang1 Date: Sun, 29 Sep 2024 13:43:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E6=B5=81=E8=B0=83=E8=AF=95=E9=A1=B5=E9=9D=A2=E9=80=89=E6=8B=A9?= =?UTF-8?q?=E4=B8=8B=E6=8B=89=E6=A1=86=E5=8F=82=E6=95=B0,=E8=B0=83?= =?UTF-8?q?=E8=AF=95=E6=A1=86=E8=A2=AB=E5=85=B3=E6=8E=89=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/application-workflow/index.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/ui/src/views/application-workflow/index.vue b/ui/src/views/application-workflow/index.vue index 6674eb35c..daa522760 100644 --- a/ui/src/views/application-workflow/index.vue +++ b/ui/src/views/application-workflow/index.vue @@ -35,7 +35,7 @@ /> -
+
@@ -118,7 +118,7 @@ const { let interval: any const workflowRef = ref() - +const workflowMainRef = ref() const loading = ref(false) const detail = ref(null) @@ -202,8 +202,7 @@ const clickShowDebug = () => { }) } function clickoutsideDebug(e: any) { - const Elm = e?.target?.className?.includes?.('el-select') - if (!Elm) { + if (workflowMainRef.value && e && e.target && workflowMainRef.value.contains(e?.target)) { showDebug.value = false } }