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.
@@ -111,7 +111,7 @@ watch(
111
111
  return {
112
112
  order,
113
113
  isChecked: !!order,
114
- text: `nic${index} ${item.mac || undefined} mac`,
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[] = []
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.1.64",
4
+ "version": "1.1.65",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",