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.
package/components/common/wizards/datastoreNew/add/sharedStorm/deviceSelection/DeviceSelection.vue
CHANGED
|
@@ -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 =
|
|
293
|
+
data.lunDisk = model.value.lunDisk.map((lun) => {
|
|
295
294
|
return { name: lun.name, capacity: lun.capacity_mb }
|
|
296
295
|
})
|
|
297
296
|
}
|