mirror of
https://github.com/dataease/dataease.git
synced 2026-05-15 13:32:18 +08:00
fix(图表): 修复数据大屏tab非首个tab页时可能移动位置实现问题
This commit is contained in:
@@ -526,7 +526,7 @@ export function isGroupCanvas(canvasId) {
|
||||
}
|
||||
|
||||
export function isTabCanvas(canvasId) {
|
||||
return canvasId && canvasId.includes('tab')
|
||||
return canvasId && !canvasId.includes('Group') && !isMainCanvas(canvasId)
|
||||
}
|
||||
|
||||
export function findComponentIndexById(componentId, componentDataMatch = componentData.value) {
|
||||
|
||||
Reference in New Issue
Block a user