bfg-common 1.1.64 → 1.1.65
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/vmoptions/bootOptions/order/Order.vue
CHANGED
|
@@ -111,7 +111,7 @@ watch(
|
|
|
111
111
|
return {
|
|
112
112
|
order,
|
|
113
113
|
isChecked: !!order,
|
|
114
|
-
text:
|
|
114
|
+
text: item.mac || 'undefined',
|
|
115
115
|
iconClassName: 'vsphere-icon-network',
|
|
116
116
|
type: 'nic',
|
|
117
117
|
name: item.network + index,
|
|
@@ -144,12 +144,6 @@ const onChangeOrder = (event: UI_I_DropEvent): void => {
|
|
|
144
144
|
watch(
|
|
145
145
|
bootList,
|
|
146
146
|
(newValue) => {
|
|
147
|
-
// const boots = newValue.filter((item) => item.isChecked).map((item) => item)
|
|
148
|
-
// const boots = newValue.map((item) => {
|
|
149
|
-
// if (!item.isChecked) item.boot_order = 0
|
|
150
|
-
// return item
|
|
151
|
-
// })
|
|
152
|
-
|
|
153
147
|
const networks: UI_I_SendDataNewNetwork[] = []
|
|
154
148
|
const hardDisks: UI_I_SendDataNewHardDisk[] = []
|
|
155
149
|
const cdDvdDrives: UI_I_SendDataNewCdDvdDrive[] = []
|