bfg-common 1.1.72 → 1.1.74

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 => {
@@ -209,6 +209,7 @@ watch(
209
209
  io: 'native',
210
210
  limit_iops: 0,
211
211
  discard: 'unmap',
212
+ target: props.cdDvdDrive.target,
212
213
  boot_order: props.cdDvdDrive.boot_order,
213
214
  detach: props.type === 'removed',
214
215
  remove: props.type === 'removed' && deleteFilesFromDatastore.value, // Проверяем если удалили диск и указали Delete files from datastore
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.1.72",
4
+ "version": "1.1.74",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",