bfg-common 1.4.72 → 1.4.73
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/cdDvdDrive/CdDvdDrive.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuHotPlug.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Iommu.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Pc.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/memory/MemoryHotPlug.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/newHardDisk/NewHardDisk.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/videoCard/Graphics.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Menu.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/Secure.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/bootOptions/order/Order.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/CopyPaste.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FileTransfer.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/FolderSharing.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PlaybackCompression.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/PowerControl.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/remoteConsoleOptions/password/Password.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/vmoptions/tools/Tools.vue +1 -1
- package/package.json +1 -1
package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
data-id="passthrough-host-cpu"
|
|
40
40
|
:disabled="props.disabled"
|
|
41
41
|
type="checkbox"
|
|
42
|
-
|
|
42
|
+
v-model="passthroughHostCpuLocal"
|
|
43
43
|
@input="passthroughHostCpuLocal = !passthroughHostCpuLocal"
|
|
44
44
|
@change="changePassthroughHostCpu"
|
|
45
45
|
/>
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
data-id="host-model-cpu-input"
|
|
84
84
|
type="checkbox"
|
|
85
85
|
:disabled="props.disabled"
|
|
86
|
-
|
|
86
|
+
v-model="hostModelCpuLocal"
|
|
87
87
|
@input="hostModelCpuLocal = !hostModelCpuLocal"
|
|
88
88
|
@change="changeHostModelCpu"
|
|
89
89
|
/>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
data-id="file-transfer-checkbox"
|
|
12
12
|
:disabled="props.disabled"
|
|
13
13
|
type="checkbox"
|
|
14
|
-
|
|
14
|
+
v-model="fileTransferLocal"
|
|
15
15
|
@input="fileTransferLocal = !fileTransferLocal"
|
|
16
16
|
/>
|
|
17
17
|
<label for="file-transfer" class="label-text-normal">{{
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
data-id="folder-sharing-checkbox"
|
|
12
12
|
type="checkbox"
|
|
13
13
|
disabled
|
|
14
|
-
|
|
14
|
+
v-model="folderSharingLocal"
|
|
15
15
|
@input="folderSharingLocal = !folderSharingLocal"
|
|
16
16
|
/>
|
|
17
17
|
<label for="folder-sharing" class="div-disabled label-text-normal">{{
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
data-id="playback-compression-checkbox"
|
|
12
12
|
:disabled="props.disabled"
|
|
13
13
|
type="checkbox"
|
|
14
|
-
|
|
14
|
+
v-model="playbackCompressionLocal"
|
|
15
15
|
@input="playbackCompressionLocal = !playbackCompressionLocal"
|
|
16
16
|
/>
|
|
17
17
|
<label for="playback-compression" class="label-text-normal">{{
|