bfg-common 1.3.112 → 1.3.113

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.
@@ -16,7 +16,8 @@
16
16
  </span>
17
17
  </template>
18
18
  <template #stackChildren>
19
- <template v-if="props.type === 'new'">
19
+ <!-- <template v-if="props.type === 'new'">-->
20
+ <template v-if="props.state !== 2">
20
21
  <common-vm-actions-common-customize-hardware-virtual-hardware-new-pci-device-type-selection
21
22
  v-model="selectedType"
22
23
  :options="pciDeviceTypeOptions"
@@ -8,7 +8,7 @@
8
8
  :key="item.id"
9
9
  :value="item"
10
10
  >
11
- {{ item.id }} | {{ item.device_name }}
11
+ {{ item.address }} | {{ item.device_name }}
12
12
  </option>
13
13
  </select>
14
14
  </div>
@@ -1,7 +1,7 @@
1
1
  import { UI_I_OptionItem } from '~/components/atoms/lib/models/interfaces'
2
2
 
3
3
  export const pciDeviceTypeOptionsConfig: UI_I_OptionItem[] = [
4
- { text: 'DirectPath IO', value: 'direct_path_io' },
5
- { text: 'Dynamic DirectPath IO', value: 'dynamic_direct_path_io' },
6
- { text: 'NVIDIA GRID vGPU', value: 'nvidia_grid' },
4
+ { text: 'DP I/O', value: 'direct_path_io' },
5
+ { text: 'Dynamic DP I/O', value: 'dynamic_direct_path_io' },
6
+ { text: 'GRID vGPU', value: 'nvidia_grid' },
7
7
  ]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.112",
4
+ "version": "1.3.113",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",