fix(数据大屏): 修复快捷键删除多选区域仅删除最有一个组件的问题

This commit is contained in:
wangjiahao 2024-09-23 14:59:40 +08:00
parent cac6b54457
commit a60aa76a07

View File

@ -235,7 +235,7 @@ function preview() {
} }
function deleteComponent() { function deleteComponent() {
if (curComponent.value) { if (curComponent.value && curComponent.value.component !== 'GroupArea') {
const curInfo = getCurInfo() const curInfo = getCurInfo()
if (curInfo) { if (curInfo) {
dvMainStore.deleteComponent(curInfo.index, curInfo.componentData) dvMainStore.deleteComponent(curInfo.index, curInfo.componentData)