bfg-common 1.3.163 → 1.3.164

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.
@@ -159,7 +159,7 @@ import {
159
159
  UI_I_InvalidKeys,
160
160
  UI_I_SendDataVirtualHardware,
161
161
  UI_I_SendDataNewCdDvdDrive,
162
- UI_I_HardDisk,
162
+ // UI_I_HardDisk,
163
163
  UI_I_SendDataNewPciDevice,
164
164
  } from '~/components/common/vm/actions/common/customizeHardware/virtualHardware/lib/models/interfaces'
165
165
  import { UI_I_ErrorValidationField } from '~/lib/models/store/interfaces'
@@ -110,10 +110,11 @@ const nvidiaGridProfile = ref<string>('')
110
110
  watch(
111
111
  props.pciDevice,
112
112
  (newValue) => {
113
- const passthroughDevice = props.passthroughDevices.find(
114
- (item) => item.address === newValue.address
115
- )
116
- passthroughDevice && (directPathIo.value = passthroughDevice) // Todo change
113
+ // const passthroughDevice = props.passthroughDevices.find(
114
+ // (item) => item.address === newValue.address
115
+ // )
116
+ // passthroughDevice && (directPathIo.value = passthroughDevice) // Todo change
117
+ newValue && (directPathIo.value = newValue)
117
118
  },
118
119
  { immediate: true }
119
120
  )
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.163",
4
+ "version": "1.3.164",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",