diff --git a/src/components/SplitFlow.vue b/src/components/SplitFlow.vue index d781eeb4..68ece0d1 100644 --- a/src/components/SplitFlow.vue +++ b/src/components/SplitFlow.vue @@ -46,6 +46,7 @@ @connectivity-hovered="onConnectivityHovered" @connectivity-explorer-clicked="onConnectivityExplorerClicked" @connectivity-source-change="onConnectivitySourceChange" + @connectivity-item-close="onConnectivityItemClose" /> { + if (this.multiflatmapRef) { + const currentFlatmap = this.multiflatmapRef.getCurrentFlatmap(); + if (currentFlatmap) { + currentFlatmap.closeTooltip(); + } + } + if (this.flatmapRef) { + this.flatmapRef.closeTooltip(); + } + }); + this.multiflatmapRef = this.$refs.multiflatmap; this.flatmapRef = this.$refs.flatmap; this.scaffoldRef = this.$refs.scaffold;