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
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.562",
4
+ "version": "1.5.563",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",