1212 <SSwitch label="Board statistics" v-model :value =" boardStat " />
1313 <SSwitch label="Network statistics" v-model :value =" networkStat " />
1414 <SSwitch label="Board humidity/temperature" v-model :value =" boardSense " />
15- <SSwitch label="Store measurements if failed connection" v-model :value =" storeMeasIfFailedConn " />
1615 <SSelect
1716 label="Temperature unit"
1817 v-model :value =" temperatureUnitIsCelsius "
@@ -175,7 +174,6 @@ export default {
175174 boardStat: false ,
176175 networkStat: true ,
177176 otaEnabled: true ,
178- storeMeasIfFailedConn: true ,
179177 temperatureUnitIsCelsius: true ,
180178 gpsEnabled: true ,
181179 gpsTimeout: 120 ,
@@ -271,8 +269,6 @@ export default {
271269 this .gpsNoFixNoUpload = this .strToJSValue (this .$storage .get (" meas-gps-no-fix-no-upload" ), false )
272270 this .gpsOnlyOnBoot = this .strToJSValue (this .$storage .get (" meas-gps-only-on-boot" ), true )
273271
274- this .storeMeasIfFailedConn = this .strToJSValue (this .$storage .get (" store-meas-if-failed-conn" ), true )
275-
276272 this .systemSettings = this .getJsonObjectFromCookies (" system-settings" )
277273 ? this .getJsonObjectFromCookies (" system-settings" )
278274 : this .systemDefaultSettings
@@ -312,7 +308,6 @@ export default {
312308 this .$storage .remove (" selected-shield" )
313309 this .$storage .remove (" system-enable-ota" )
314310 this .$storage .remove (" meas-keyvalue" )
315- this .$storage .remove (" store-meas-if-failed-conn" )
316311 this .$storage .remove (" system-settings" )
317312 this .$storage .remove (" request_fs_optimization" )
318313 },
@@ -334,8 +329,6 @@ export default {
334329 this .$storage .set (" meas-gps-no-fix-no-upload" , this .boolToPyStr (this .gpsNoFixNoUpload ))
335330 this .$storage .set (" meas-gps-only-on-boot" , this .boolToPyStr (this .gpsOnlyOnBoot ))
336331
337- this .$storage .set (" store-meas-if-failed-conn" , this .boolToPyStr (this .storeMeasIfFailedConn ))
338-
339332 this .$storage .set (" meas-keyvalue" , this .getKeyValuePairs ())
340333
341334 let selectedShield = this .activeTab
0 commit comments