@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/dist/map-side-bar.js +1727 -1730
- package/dist/map-side-bar.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/ConnectivityInfo.vue +4 -15
package/package.json
CHANGED
|
@@ -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
|
-
|
|
632
|
-
this.connectivityError = {...connectivityError};
|
|
622
|
+
this.connectivityError = {...connectivityError};
|
|
633
623
|
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
}
|
|
624
|
+
setTimeout(() => {
|
|
625
|
+
this.connectivityError = null;
|
|
626
|
+
}, ERROR_TIMEOUT);
|
|
638
627
|
},
|
|
639
628
|
},
|
|
640
629
|
mounted: function () {
|