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.
package/components/common/vm/actions/common/customizeHardware/virtualHardware/VirtualHardware.vue
CHANGED
|
@@ -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
|
-
|
|
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
|
)
|