fix: don't wait until background is loaded for list to show

This commit is contained in:
Dominik Pschenitschni 2022-11-10 21:51:44 +01:00
parent 403f1ee400
commit c674c806a6
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ watch(
const list = new ListModel(listData)
try {
const loadedList = await listService.value.get(list)
await baseStore.handleSetCurrentList({list: loadedList})
baseStore.handleSetCurrentList({list: loadedList})
} finally {
loadedListId.value = props.listId
}