chore: don't wrap a computed in another computed
This commit is contained in:
parent
ba452ab883
commit
afaf1846ec
@ -32,7 +32,7 @@
|
|||||||
<ProjectCardGrid :projects="projectHistory" v-cy="'projectCardGrid'" />
|
<ProjectCardGrid :projects="projectHistory" v-cy="'projectCardGrid'" />
|
||||||
</div>
|
</div>
|
||||||
<ShowTasks
|
<ShowTasks
|
||||||
v-if="hasProjects"
|
v-if="projectStore.hasProjects"
|
||||||
class="show-tasks"
|
class="show-tasks"
|
||||||
:key="showTasksKey"
|
:key="showTasksKey"
|
||||||
/>
|
/>
|
||||||
@ -80,7 +80,6 @@ const projectHistory = computed(() => {
|
|||||||
|
|
||||||
const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0)
|
const migratorsEnabled = computed(() => configStore.availableMigrators?.length > 0)
|
||||||
const hasTasks = computed(() => baseStore.hasTasks)
|
const hasTasks = computed(() => baseStore.hasTasks)
|
||||||
const hasProjects = computed(() => projectStore.hasProjects)
|
|
||||||
const loading = computed(() => taskStore.isLoading)
|
const loading = computed(() => taskStore.isLoading)
|
||||||
const deletionScheduledAt = computed(() => parseDateOrNull(authStore.info?.deletionScheduledAt))
|
const deletionScheduledAt = computed(() => parseDateOrNull(authStore.info?.deletionScheduledAt))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user