bfg-common 1.2.93 → 1.2.95
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.
|
@@ -559,13 +559,13 @@ const onShowModal = (
|
|
|
559
559
|
break
|
|
560
560
|
}
|
|
561
561
|
}
|
|
562
|
-
const onRemoveNetwork = (
|
|
562
|
+
const onRemoveNetwork = (label: string) => {
|
|
563
563
|
isShowRemoveModalLoader.value = true
|
|
564
|
-
|
|
564
|
+
const id = props.networksList.find(network => network.title === label)!.id
|
|
565
|
+
emits('remove-network', { id, hideModalCB: onHideNetworkRemoveModal })
|
|
565
566
|
}
|
|
566
|
-
const onRemoveSwitch = (
|
|
567
|
+
const onRemoveSwitch = (id: string) => {
|
|
567
568
|
isShowRemoveModalLoader.value = true
|
|
568
|
-
const id = props.networksList.find((network) => network.title === label)!.id
|
|
569
569
|
emits('remove-switch', { id, hideModalCB: onHideSwitchRemoveModal })
|
|
570
570
|
}
|
|
571
571
|
const onRemovePort = (id: string) => {
|
|
@@ -32,7 +32,8 @@ export const capabilities: UI_I_Compatibility = {
|
|
|
32
32
|
machineTypes: [
|
|
33
33
|
{
|
|
34
34
|
text: 'Q35',
|
|
35
|
-
value: 'pc-q35-3.1',
|
|
35
|
+
// value: 'pc-q35-3.1',
|
|
36
|
+
value: 'pc-q35-6.2',
|
|
36
37
|
},
|
|
37
38
|
{
|
|
38
39
|
text: 'I440FX',
|
|
@@ -126,7 +127,7 @@ export const capabilities: UI_I_Compatibility = {
|
|
|
126
127
|
},
|
|
127
128
|
],
|
|
128
129
|
guestOsVersions: {
|
|
129
|
-
|
|
130
|
+
windows: [
|
|
130
131
|
{
|
|
131
132
|
text: 'Microsoft Windows Server 2022 (64-bit)',
|
|
132
133
|
value: 'windows2019srvNext_64Guest-vbsEnabled-true',
|
|
@@ -220,7 +221,7 @@ export const capabilities: UI_I_Compatibility = {
|
|
|
220
221
|
value: 'win95Guest-vbsEnabled-false',
|
|
221
222
|
},
|
|
222
223
|
],
|
|
223
|
-
|
|
224
|
+
linux: [
|
|
224
225
|
{
|
|
225
226
|
text: 'Red Hat Enterprise Linux (64-bit)',
|
|
226
227
|
value: 'rhel64Guest-vbsEnabled-false',
|
|
@@ -306,7 +307,7 @@ export const capabilities: UI_I_Compatibility = {
|
|
|
306
307
|
value: 'otherLinuxGuest-vbsEnabled-false',
|
|
307
308
|
},
|
|
308
309
|
],
|
|
309
|
-
|
|
310
|
+
other: [
|
|
310
311
|
{
|
|
311
312
|
text: 'Apple macOS (64-bit)',
|
|
312
313
|
value: 'darwin64Guest-vbsEnabled-false',
|