bfg-common 1.4.612 → 1.4.613
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.
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
:vm-name-old="props.vmSettings?.name"
|
|
53
53
|
:passthrough-devices="props.passthroughDevices"
|
|
54
54
|
:get-datastore-table-func="props.getDatastoreTableFunc"
|
|
55
|
+
:customize-hardware-submit="customizeHardwareSubmit"
|
|
55
56
|
@hide="emits('hide')"
|
|
56
57
|
@validate="validateSendData"
|
|
57
58
|
@update-vm="emits('update-vm')"
|
|
@@ -201,7 +202,9 @@ const checkCustomizeHardware = async (): Promise<boolean> => {
|
|
|
201
202
|
}
|
|
202
203
|
|
|
203
204
|
const validateSendData = async (): Promise<void> => {
|
|
205
|
+
console.log(111)
|
|
204
206
|
const isValid = await checkCustomizeHardware()
|
|
207
|
+
console.log(isValid, 222)
|
|
205
208
|
if (!isValid) {
|
|
206
209
|
return
|
|
207
210
|
}
|