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

View File

@@ -69,7 +69,8 @@ export const useGameLogStore = defineStore('GameLog', () => {
defaultSort: {
prop: 'created_at',
order: 'descending'
}
},
rowKey: (row) => `${row.type}:${row.rowId ?? Math.random()}`
},
pageSize: 20,
pageSizeLinked: true,