bfg-common 1.3.435 → 1.3.436

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.
@@ -3,7 +3,6 @@
3
3
  <common-wizards-datastore-new-add-shared-storm-device-selection
4
4
  v-show="props.stepId === 2"
5
5
  v-model="model"
6
- v-model:lun-disk="[]"
7
6
  :step-id="props.stepId"
8
7
  :alert-messages="props.alertMessages"
9
8
  :messages-fields="props.messagesFields"
@@ -128,7 +128,6 @@ const props = defineProps<{
128
128
  alertMessages: string[]
129
129
  messagesFields: UI_I_ArbitraryObject<UI_I_ErrorFields>
130
130
  deviceSelectionSubmit: number
131
- lunDisk: UI_I_CreateStorageLunDiskItem[]
132
131
  datastoreType: UI_T_DatastoreType
133
132
  datacenterHosts?: UI_I_SelectHostOptions[] | undefined
134
133
  isMainFilter?: boolean
@@ -291,7 +290,7 @@ const collectDataForReview = (
291
290
 
292
291
  if (props.datastoreType === 'shared-storm') {
293
292
  data.host = selectedHost.value
294
- data.lunDisk = props.lunDisk.map((lun) => {
293
+ data.lunDisk = model.value.lunDisk.map((lun) => {
295
294
  return { name: lun.name, capacity: lun.capacity_mb }
296
295
  })
297
296
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.435",
4
+ "version": "1.3.436",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",