bfg-common 1.3.31 → 1.3.33
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.
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
<div v-if="vmSettings" class="vm-context">
|
|
19
19
|
<common-vm-actions-common-select-name
|
|
20
20
|
v-show="selectedStep.id === 0"
|
|
21
|
+
:show="selectedStep.id === 0"
|
|
21
22
|
:name-form-submit="nameFormSubmit"
|
|
22
23
|
:project="props.project"
|
|
23
24
|
@submit="onChangeName(...$event)"
|
|
@@ -164,7 +165,6 @@ const wizard: Wizard = new Wizard(
|
|
|
164
165
|
)
|
|
165
166
|
const wasCompleted = computed<boolean>(() => wizard.wasCompleted())
|
|
166
167
|
const selectedScheme = computed<number[]>(() => wizard.selectedScheme.value)
|
|
167
|
-
// const alertMessages = computed<string[][]>(() => wizard.alertMessages.value)
|
|
168
168
|
|
|
169
169
|
const onChangeSteps = async (value: UI_I_WizardStep[]): Promise<void> => {
|
|
170
170
|
wizard.changeSteps(value, validationFunc, validateSendData)
|