diff --git a/core/core-frontend/src/components/data-visualization/canvas/Shape.vue b/core/core-frontend/src/components/data-visualization/canvas/Shape.vue
index 9f3a7e84c7..17f32fea59 100644
--- a/core/core-frontend/src/components/data-visualization/canvas/Shape.vue
+++ b/core/core-frontend/src/components/data-visualization/canvas/Shape.vue
@@ -49,6 +49,7 @@
:style="getPointStyle(item)"
@mousedown="handleMouseDownOnPoint(item, $event)"
>
+
{
}
}
+const batchSelected = e => {
+ if (dvMainStore.batchOptStatus) {
+ componentEditBarRef.value.batchOptCheckOut()
+ e.stopPropagation()
+ e.preventDefault()
+ return
+ }
+}
+
const handleMouseDownOnPoint = (point, e) => {
dashboardActive.value && emit('onStartResize', e)
dvMainStore.setInEditorStatus(true)
@@ -833,6 +843,15 @@ onMounted(() => {
position: absolute;
}
+.shape-shadow {
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ position: absolute;
+ background-size: 100% 100% !important;
+}
+
.shape-inner {
width: 100%;
height: 100%;