Merge pull request #612 from appwrite/fix-6497-document-ids

Fix document IDs not updating when switching between collections
This commit is contained in:
Torsten Dittmann
2023-11-09 16:51:41 +01:00
committed by GitHub
@@ -158,9 +158,11 @@
<TableCellCheck bind:selectedIds={selectedDb} id={document.$id} />
<TableCell width={150}>
<Id value={document.$id}>
{document.$id}
</Id>
{#key document.$id}
<Id value={document.$id}>
{document.$id}
</Id>
{/key}
</TableCell>
{#each $columns as column}