1
0

feat: review changes

This commit is contained in:
Dominik Pschenitschni
2021-12-04 17:04:28 +01:00
parent f3358269e5
commit 2db820d926
8 changed files with 10 additions and 14 deletions

View File

@ -282,7 +282,7 @@ const taskDetailRoutes = computed(() => Object.fromEntries(
{
name: 'task.detail',
params: { id },
state: { backgroundView: router.currentRoute.value.fullPath },
state: { backdropView: router.currentRoute.value.fullPath },
},
])),
))

View File

@ -124,7 +124,7 @@ async function loadList(listIdToLoad) {
const loadedList = await listService.value.get(list)
await store.dispatch(CURRENT_LIST, loadedList)
} finally {
loadedListId.value = listId
loadedListId.value = listId.value
}
}
</script>