bfg-common 1.5.562 → 1.5.563
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.
|
@@ -232,11 +232,13 @@ if (props.network.mac) {
|
|
|
232
232
|
}
|
|
233
233
|
watch(selectedLocation, (newValue) => {
|
|
234
234
|
if (newValue !== cashNetwork.network) {
|
|
235
|
-
macAddress.value = ''
|
|
236
235
|
macAddressType.value = 'automatic'
|
|
236
|
+
macAddress.value = ''
|
|
237
237
|
} else {
|
|
238
|
-
macAddress.value = cashNetwork.mac
|
|
239
238
|
macAddressType.value = cashNetwork.mac ? 'manual' : 'automatic'
|
|
239
|
+
setTimeout(() => {
|
|
240
|
+
macAddress.value = cashNetwork.mac
|
|
241
|
+
},0)
|
|
240
242
|
}
|
|
241
243
|
})
|
|
242
244
|
|