fix: make check if projects are available work again

This commit is contained in:
kolaente 2023-03-27 14:26:11 +02:00
parent 1baf20471a
commit 66bf2d7e14
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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))