fix: make check if projects are available work again
This commit is contained in:
parent
aaa9d553d0
commit
5e65814b8c
@ -80,7 +80,7 @@ const projectHistory = computed(() => {
|
||||
|
||||
const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0)
|
||||
const hasTasks = computed(() => baseStore.hasTasks)
|
||||
const hasProjects = computed(() => projectStore.projects.length > 0)
|
||||
const hasProjects = computed(() => projectStore.projects ? true : false)
|
||||
const loading = computed(() => taskStore.isLoading)
|
||||
const deletionScheduledAt = computed(() => parseDateOrNull(authStore.info?.deletionScheduledAt))
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user