diff --git a/core/core-frontend/src/components/data-visualization/RealTimeTreeGather.vue b/core/core-frontend/src/components/data-visualization/RealTimeTreeGather.vue
new file mode 100644
index 0000000000..0a8d203dd1
--- /dev/null
+++ b/core/core-frontend/src/components/data-visualization/RealTimeTreeGather.vue
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
diff --git a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue
index a7a7520bb3..c06fd71c1e 100644
--- a/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue
+++ b/core/core-frontend/src/components/data-visualization/canvas/ComponentWrapper.vue
@@ -113,11 +113,12 @@ onMounted(() => {
})
const onClick = () => {
- const events = config.value.events
- Object.keys(events).forEach(event => {
- currentInstance.ctx[event](events[event])
- })
- eventBus.emit('v-click', config.value.id)
+ // do event click
+ // const events = config.value.events
+ // Object.keys(events).forEach(event => {
+ // currentInstance.ctx[event](events[event])
+ // })
+ // eventBus.emit('v-click', config.value.id)
}
const getComponentStyleDefault = style => {
diff --git a/core/core-frontend/src/components/data-visualization/canvas/ContextMenuDetails.vue b/core/core-frontend/src/components/data-visualization/canvas/ContextMenuDetails.vue
index 4f258f4683..4936baf5c3 100644
--- a/core/core-frontend/src/components/data-visualization/canvas/ContextMenuDetails.vue
+++ b/core/core-frontend/src/components/data-visualization/canvas/ContextMenuDetails.vue
@@ -80,7 +80,12 @@ const show = () => {
layerStore.showComponent()
menuOpt('show')
}
-
+const categoryChange = type => {
+ if (curComponent.value) {
+ snapshotStore.recordSnapshotCache()
+ curComponent.value['category'] = type
+ }
+}
const rename = () => {
emit('rename')
menuOpt('rename')
@@ -222,6 +227,12 @@ const editQueryCriteria = () => {