From ce0d071a7e566a0bcb10c36bac98b2d8f2dff7bf Mon Sep 17 00:00:00 2001 From: jianneng-fit2cloud Date: Wed, 24 Jul 2024 13:23:01 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E6=B7=BB=E5=8A=A0=E6=96=B0=E7=9A=84=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E5=90=8E=EF=BC=8C=E5=AD=98=E9=87=8F=E5=9B=BE=E8=A1=A8?= =?UTF-8?q?=E5=9C=A8=E5=B0=86=E5=AD=97=E6=AE=B5=E6=8B=96=E5=85=A5=E6=97=B6?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/chart/components/editor/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-frontend/src/views/chart/components/editor/index.vue b/core/core-frontend/src/views/chart/components/editor/index.vue index 23767632d0..e50d71881d 100644 --- a/core/core-frontend/src/views/chart/components/editor/index.vue +++ b/core/core-frontend/src/views/chart/components/editor/index.vue @@ -1645,6 +1645,7 @@ const drop = (ev: MouseEvent, type = 'xAxis') => { for (let i = 0; i < arr.length; i++) { const obj = cloneDeep(arr[i]) state.moveId = obj.id as unknown as number + view.value[type] ??= [] view.value[type].push(obj) const e = { newDraggableIndex: view.value[type].length - 1 }