fix: utilizing new total/completed fields in /lists endpoint to lazy load items on demand

This commit is contained in:
2026-08-21 21:15:42 +02:00
parent d00361c4ac
commit 7273fe85d3
5 changed files with 69 additions and 22 deletions
+1
View File
@@ -15,6 +15,7 @@ const itemError = ref('')
onMounted(() => {
listsStore.loadLists()
listsStore.loadListItems(props.id)
})
const list = computed(() => listsStore.lists.find((entry) => entry.id === props.id))