bfg-common 1.5.559 → 1.5.561

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.
@@ -52,6 +52,7 @@ export const viewFunc = (
52
52
 
53
53
  if (project === 'procurator') {
54
54
  host.push({ text: localization.common.services, value: 'services' })
55
+ host.push({ text: localization.common.nfs, value: 'nfs' })
55
56
  }
56
57
 
57
58
  const viewData: UI_I_OverviewViewOptionData = {
@@ -121,7 +121,7 @@ const title = computed<string>(() => {
121
121
 
122
122
 
123
123
  const wizard: Wizard = new Wizard(
124
- stepsFunc(localization.value),
124
+ stepsFunc(localization.value, props.isScheduledTasks),
125
125
  stepsSchemeInitial(props.isScheduledTasks)
126
126
  )
127
127
 
@@ -14,6 +14,7 @@ export const dynamicSteps: UI_I_DynamicSteps = {
14
14
 
15
15
  export const stepsFunc = (
16
16
  localization: UI_I_Localization,
17
+ isScheduledTasks: boolean
17
18
  ): UI_I_WizardStep[] => {
18
19
  return [
19
20
  {
@@ -31,7 +32,7 @@ export const stepsFunc = (
31
32
  stepName: '',
32
33
  title: localization.common.general,
33
34
  subTitle: 'Specify a unique name and a description for the backup.',
34
- status: UI_E_WIZARD_STATUS.SELECTED, // ??
35
+ status: isScheduledTasks ? UI_E_WIZARD_STATUS.INACTIVE : UI_E_WIZARD_STATUS.SELECTED, // ??
35
36
  isValid: true,
36
37
  fields: {
37
38
  name: {
@@ -13,7 +13,7 @@
13
13
  :loading="loading"
14
14
  type="radio"
15
15
  class="data-table"
16
- test-id="storage-adapter-table"
16
+ test-id="scheduled-tasks-table"
17
17
  hide-pagination
18
18
  hide-page-size
19
19
  off-select-by-row
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.559",
4
+ "version": "1.5.561",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",