bfg-common 1.3.332 → 1.3.333

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.
@@ -288,8 +288,10 @@ const saveChangesAndNextNfs = (event: any, next = true): void => {
288
288
 
289
289
  const isShowCompleteBlock = computed<boolean>(() => {
290
290
  const localStep = datastoreType.value === 'local' && stepPosition.value === 2
291
+
291
292
  const sharesStep =
292
- datastoreType.value === 'shared-storm' && stepPosition.value === 3
293
+ datastoreType.value === 'shared-storm' && (props.mode === 'procurator' ? stepPosition.value === 3 : stepPosition.value === 2)
294
+
293
295
  const nfsFirst =
294
296
  datastoreType.value === 'nfs' &&
295
297
  nfsVersion.value === 'nfs-3' &&
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.332",
4
+ "version": "1.3.333",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",