add row key to feed items and gamelog items

This commit is contained in:
pa
2025-12-16 20:16:12 +09:00
committed by Natsumi
parent 7e647cd1eb
commit 42547b43fb
4 changed files with 54 additions and 165 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ export const useFeedStore = defineStore('Feed', () => {
defaultSort: {
prop: 'created_at',
order: 'descending'
}
},
rowKey: (row) => `${row.type}:${row.rowId ?? Math.random()}`
},
pageSize: 20,
pageSizeLinked: true,