fix: moved "share list" to list overview, rather than list detail view

This commit is contained in:
2026-08-21 17:57:09 +02:00
parent c521615537
commit a8d4b456e4
7 changed files with 253 additions and 85 deletions
+1 -3
View File
@@ -211,9 +211,7 @@ export const useListsStore = defineStore('lists', () => {
const payload = queueEntry.payload as { list_item_id?: string }
await db.syncQueue.update(queueEntry.id!, {
localListItemId: newId,
payload: payload?.list_item_id
? { ...payload, list_item_id: newId }
: queueEntry.payload,
payload: payload?.list_item_id ? { ...payload, list_item_id: newId } : queueEntry.payload,
})
}
}