@abi-software/map-side-bar 2.5.0-beta.6 → 2.5.0-beta.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.5.0-beta.6",
3
+ "version": "2.5.0-beta.7",
4
4
  "files": [
5
5
  "dist/*",
6
6
  "src/*",
@@ -609,15 +609,6 @@ export default {
609
609
  errorMessage,
610
610
  };
611
611
  },
612
- isExistingError: function (connectivityError) {
613
- if (
614
- this.connectivityError &&
615
- connectivityError.errorConnectivities !== this.connectivityError.errorConnectivities
616
- ) {
617
- return true;
618
- }
619
- return false;
620
- },
621
612
  pushConnectivityError: function (errorInfo) {
622
613
  const connectivityError = this.getConnectivityError(errorInfo);
623
614
  const connectivityGraphRef = this.$refs.connectivityGraphRef;
@@ -628,13 +619,11 @@ export default {
628
619
  }
629
620
 
630
621
  // error for list view
631
- if (!this.isExistingError(connectivityError)) {
632
- this.connectivityError = {...connectivityError};
622
+ this.connectivityError = {...connectivityError};
633
623
 
634
- setTimeout(() => {
635
- this.connectivityError = null;
636
- }, ERROR_TIMEOUT);
637
- }
624
+ setTimeout(() => {
625
+ this.connectivityError = null;
626
+ }, ERROR_TIMEOUT);
638
627
  },
639
628
  },
640
629
  mounted: function () {