bfg-common 1.5.319 → 1.5.321
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.
@@ -63,6 +63,7 @@
|
|
63
63
|
/>
|
64
64
|
<common-vm-actions-common-select-options
|
65
65
|
v-show="selectedStep.id === dynamicSteps.selectOptions"
|
66
|
+
:is-create-template="props.isNewVmFromTemplate"
|
66
67
|
@change="onChangeSelectOptions"
|
67
68
|
/>
|
68
69
|
<common-vm-actions-common-select-os
|
@@ -234,7 +235,7 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
234
235
|
const isSphere = computed<boolean>(() => props.project === 'sphere')
|
235
236
|
|
236
237
|
const isScheduledTasks = computed<boolean>(
|
237
|
-
() => props.schedulerTask
|
238
|
+
() => props.schedulerTask?.isSchedulerTask
|
238
239
|
)
|
239
240
|
|
240
241
|
const title = computed<string>(() => {
|
@@ -180,7 +180,7 @@ const emits = defineEmits<{
|
|
180
180
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
181
181
|
|
182
182
|
const isScheduledTasks = computed<boolean>(
|
183
|
-
() => props.schedulerTask
|
183
|
+
() => props.schedulerTask?.isSchedulerTask
|
184
184
|
)
|
185
185
|
|
186
186
|
const title = computed<string>(() => {
|
@@ -183,7 +183,7 @@ const emits = defineEmits<{
|
|
183
183
|
const localization = computed<UI_I_Localization>(() => useLocal())
|
184
184
|
|
185
185
|
const isScheduledTasks = computed<boolean>(
|
186
|
-
() => props.schedulerTask
|
186
|
+
() => props.schedulerTask?.isSchedulerTask
|
187
187
|
)
|
188
188
|
|
189
189
|
const title = computed<string>(() => {
|