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.isSchedulerTask
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.isSchedulerTask
183
+ () => props.schedulerTask?.isSchedulerTask
184
184
  )
185
185
 
186
186
  const title = computed<string>(() => {
@@ -45,7 +45,7 @@
45
45
  import type { UI_I_Localization } from '~/lib/models/interfaces'
46
46
 
47
47
  const props = defineProps<{
48
- isCreateTemplate?: boolean
48
+ isCreateTemplate?: boolean // TODO change
49
49
  }>()
50
50
 
51
51
  const emits = defineEmits<{
@@ -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.isSchedulerTask
186
+ () => props.schedulerTask?.isSchedulerTask
187
187
  )
188
188
 
189
189
  const title = computed<string>(() => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.5.319",
4
+ "version": "1.5.321",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",