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 }