From 6fb020355bf6da36459b02d114870853158436a4 Mon Sep 17 00:00:00 2001 From: liangyun Date: Thu, 12 Mar 2026 10:16:56 +0800 Subject: [PATCH] =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=89=8D=E7=AB=AF=E5=8A=A8?= =?UTF-8?q?=E4=BD=9C=E5=88=86=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modeler/src/views/decision/nodes-card.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modeler/src/views/decision/nodes-card.vue b/modeler/src/views/decision/nodes-card.vue index 332dfc3..2a677c8 100644 --- a/modeler/src/views/decision/nodes-card.vue +++ b/modeler/src/views/decision/nodes-card.vue @@ -101,10 +101,10 @@ export default defineComponent({ r.data.forEach(tpl => { if (tpl.type === 'action') { actionsTemplates.value.push(tpl); - } else if (tpl.type === 'parallel' || tpl.type === 'sequence' || tpl.type === 'precondition') { - conditionTemplates.value.push(tpl); - } else { + } else if (tpl.type === 'parallel' || tpl.type === 'sequence' || tpl.type === 'select'|| tpl.type === 'root') { controlTemplates.value.push(tpl); + } else { + conditionTemplates.value.push(tpl); } }); }