@abi-software/flatmapvuer 1.4.1-beta.1 → 1.4.1-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/flatmapvuer.js +229 -229
- package/dist/flatmapvuer.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/FlatmapVuer.vue +4 -1
package/package.json
CHANGED
|
@@ -1814,7 +1814,10 @@ export default {
|
|
|
1814
1814
|
if (data.feature.type === 'marker' && this.imageRadio) {
|
|
1815
1815
|
this.tooltipType = 'image'
|
|
1816
1816
|
const imageThumbnails = this.settingsStore.getImageThumbnails(this.imageType, [data.resource[0]])
|
|
1817
|
-
this.imageEntry = markRaw(
|
|
1817
|
+
this.imageEntry = markRaw([])
|
|
1818
|
+
if (data.resource[0] in imageThumbnails) {
|
|
1819
|
+
this.imageEntry = markRaw(imageThumbnails[data.resource[0]])
|
|
1820
|
+
}
|
|
1818
1821
|
this.displayTooltip(data.feature.models)
|
|
1819
1822
|
} else {
|
|
1820
1823
|
// Call flatmap database to get the connection data
|