diff --git a/src/components/FlatmapVuer.vue b/src/components/FlatmapVuer.vue index b27ca649..b90b32d5 100644 --- a/src/components/FlatmapVuer.vue +++ b/src/components/FlatmapVuer.vue @@ -2157,6 +2157,15 @@ export default { if (this.featuresAlert) { this.tooltipEntry['featuresAlert'] = this.featuresAlert; } + // Get connectivity knowledge source | SCKAN release + if (this.mapImp.provenance?.connectivity) { + const sckanProvenance = this.mapImp.provenance.connectivity; + if ('knowledge-source' in sckanProvenance) { + this.tooltipEntry['knowledge-source'] = sckanProvenance['knowledge-source']; + } else if ('npo' in sckanProvenance) { + this.tooltipEntry['knowledge-source'] = `${sckanProvenance.npo.release}-npo`; + } + } this.$emit('connectivity-info-open', this.tooltipEntry); } if (this.annotationSidebar && this.viewingMode === 'Annotation') {