@abi-software/map-side-bar 2.14.6 → 2.14.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-side-bar",
3
- "version": "2.14.6",
3
+ "version": "2.14.7",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -638,14 +638,19 @@ export default {
638
638
  },
639
639
  },
640
640
  created: function () {
641
- this.getBanner()
641
+ if (this.entry.detailsReady) {
642
+ this.getBanner()
643
+ }
642
644
  },
643
645
  watch: {
644
- // currently not using card overflow
645
- 'entry.description': function () {
646
- // watch it
647
- this.getBanner()
648
- },
646
+ 'entry.detailsReady':{
647
+ immediate: true,
648
+ handler: function (val) {
649
+ if (val === true) {
650
+ this.getBanner()
651
+ }
652
+ },
653
+ }
649
654
  },
650
655
  }
651
656
  </script>
@@ -505,7 +505,6 @@ export default {
505
505
  additionalLinks: element.additionalLinks,
506
506
  detailsReady: true,
507
507
  })
508
- this.results[i] = this.results[i]
509
508
  })
510
509
  },
511
510
  createfilterParams: function (params) {