@abi-software/map-side-bar 2.9.2-beta.5 → 2.9.2-beta.6
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
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
<div class="block buttons-row">
|
|
93
93
|
<span>Connectivity from:</span>
|
|
94
94
|
<el-radio-group v-model="connectivitySource" @change="onConnectivitySourceChange">
|
|
95
|
-
<el-radio value="map">Map</el-radio>
|
|
95
|
+
<el-radio value="map" :disabled="noMapConnectivity">Map</el-radio>
|
|
96
96
|
<el-radio value="sckan">SCKAN</el-radio>
|
|
97
97
|
</el-radio-group>
|
|
98
98
|
<el-button
|
|
@@ -229,6 +229,7 @@ export default {
|
|
|
229
229
|
activeView: 'listView',
|
|
230
230
|
connectivityLoading: false,
|
|
231
231
|
connectivitySource: 'map', // sckan
|
|
232
|
+
noMapConnectivity: false,
|
|
232
233
|
connectivityError: {},
|
|
233
234
|
graphViewLoaded: false,
|
|
234
235
|
connectivityFromMap: null,
|
|
@@ -300,6 +301,7 @@ export default {
|
|
|
300
301
|
this.graphViewLoaded = true;
|
|
301
302
|
}
|
|
302
303
|
this.connectivitySource = this.entry.connectivitySource;
|
|
304
|
+
this.noMapConnectivity = this.entry.noMapConnectivity;
|
|
303
305
|
this.updateGraphConnectivity();
|
|
304
306
|
this.connectivityLoading = false;
|
|
305
307
|
// only emit to scroll when entire entry content changes
|