bfg-common 1.3.330 → 1.3.331

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.
@@ -120,6 +120,7 @@ const datastoreForm = ref<UI_I_CreateDatastoreForm>({
120
120
  sharedStorm: {
121
121
  name: '',
122
122
  dev_names: [],
123
+ hosts: [],
123
124
  pool_name: '',
124
125
  type_code: 2,
125
126
  },
@@ -255,6 +256,7 @@ const onSaveAndNextSharedStorm = (event: any): void => {
255
256
  const { sharedStorm } = datastoreForm.value
256
257
  sharedStorm.name = event.name
257
258
  sharedStorm.dev_names = event.lunDisk.map((lun: UI_I_LunDisk) => lun.name)
259
+ sharedStorm.hosts = [event.host]
258
260
 
259
261
  dataReadyView.value = constructDataReadyViewFunc(
260
262
  localization.value,
@@ -17,6 +17,7 @@ interface I_NfsForm extends UI_I_NfsPoolNameForm<UI_T_NfsType>{
17
17
  }
18
18
  interface I_SharedStorm extends UI_I_CreateDatastoreBodyRequest {
19
19
  dev_names: string[]
20
+ hosts: string[]
20
21
  }
21
22
 
22
23
  export interface UI_I_CreateDatastoreForm {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.330",
4
+ "version": "1.3.331",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",