From 470c5a3bddc5524fda30dca076427dd56631f6dd Mon Sep 17 00:00:00 2001 From: heyizhao Date: Fri, 17 May 2024 09:56:54 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8Dbpmn:SequenceFlow?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E6=97=B6panel=E4=B8=8D=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-ui/src/components/Process/PropertyPanel.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ruoyi-ui/src/components/Process/PropertyPanel.vue b/ruoyi-ui/src/components/Process/PropertyPanel.vue index 30834db1..a5b7abcd 100644 --- a/ruoyi-ui/src/components/Process/PropertyPanel.vue +++ b/ruoyi-ui/src/components/Process/PropertyPanel.vue @@ -122,7 +122,9 @@ export default { if (element.type === 'bpmn:Process' || element.type === 'bpmn:SequenceFlow' || element.type === 'bpmn:EndEvent' ) { - this.element = element + this.$nextTick().then(() => { + this.element = element + }) } }) this.modeler.on('selection.changed', e => {