bfg-common 1.1.89 → 1.1.91
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/add/customizeHardware/virtualHardware/VirtualHardware.vue
CHANGED
|
@@ -329,7 +329,10 @@ const addNetwork = (): void => {
|
|
|
329
329
|
networksIndex.value.push(index)
|
|
330
330
|
networksType.value.push('new')
|
|
331
331
|
|
|
332
|
-
networks.value.push(
|
|
332
|
+
networks.value.push({
|
|
333
|
+
...useDeepCopy(defaultNetwork),
|
|
334
|
+
boot_order: 0 // Убираем галочку
|
|
335
|
+
})
|
|
333
336
|
}
|
|
334
337
|
const onRemoveNetwork = (index: number): void => {
|
|
335
338
|
const removeIndex = networksIndex.value.indexOf(index)
|