@abi-software/flatmapvuer 1.5.6-beta.2 → 1.5.6-beta.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/App.vue +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/flatmapvuer",
3
- "version": "1.5.6-beta.2",
3
+ "version": "1.5.6-beta.3",
4
4
  "license": "Apache-2.0",
5
5
  "files": [
6
6
  "dist/*",
package/src/App.vue CHANGED
@@ -175,7 +175,8 @@ export default {
175
175
  const results = this.$refs.multi
176
176
  .getCurrentFlatmap()
177
177
  .searchSuggestions(term)
178
- results.__featureIds.forEach((id) => {
178
+ const featureIds = results.__featureIds || results.featureIds;
179
+ featureIds.forEach((id) => {
179
180
  const annotation = this.$refs.multi
180
181
  .getCurrentFlatmap()
181
182
  .mapImp.annotation(id)