bfg-common 1.5.1 → 1.5.2

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.
@@ -178,7 +178,10 @@ const updatePagination = (event: UI_I_Pagination): void => {
178
178
  }
179
179
  const sortTable = (event: string): void => {
180
180
  sort.value = event
181
- initLunDisksDataTable()
181
+
182
+ props.project === 'procurator'
183
+ ? initLunDisksDataTable()
184
+ : initLunDisksForSphere(model.value.hosts[0])
182
185
  }
183
186
 
184
187
  const loading = computed<boolean>(() =>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.1",
4
+ "version": "1.5.2",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",