bfg-common 1.5.320 → 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.
@@ -235,7 +235,7 @@ const localization = computed<UI_I_Localization>(() => useLocal())
|
|
235
235
|
const isSphere = computed<boolean>(() => props.project === 'sphere')
|
236
236
|
|
237
237
|
const isScheduledTasks = computed<boolean>(
|
238
|
-
() => props.schedulerTask
|
238
|
+
() => props.schedulerTask?.isSchedulerTask
|
239
239
|
)
|
240
240
|
|
241
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>(() => {
|