bfg-common 1.1.71 → 1.1.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.
@@ -256,7 +256,7 @@ const addHardDisk = (
256
256
  hardDisksIndex.value.push(newIndex)
257
257
  hardDisksType.value.push(type)
258
258
 
259
- hardDisks.value.push({ create, size, source, attach: true })
259
+ hardDisks.value.push({ create, size, source, attach: true, boot_order: -1 })
260
260
  sendData()
261
261
  }
262
262
  const onAddExistHardDisk = (hardDisk: UI_I_HardDisk): void => {
@@ -23,7 +23,7 @@
23
23
  </template>
24
24
  <template
25
25
  v-for="(item, index) in bootList"
26
- :key="index + 5"
26
+ :key="bootList.length + index"
27
27
  #[`rightSide${index}`]
28
28
  >
29
29
  <div :class="['device-icon', item.iconClassName]" />
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.1.71",
4
+ "version": "1.1.73",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",