fix gamelog row key duplication

This commit is contained in:
pa
2025-12-20 01:35:55 +09:00
committed by Natsumi
parent f2bc697117
commit 851a8e3fbd

View File

@@ -71,7 +71,7 @@ export const useGameLogStore = defineStore('GameLog', () => {
order: 'descending'
},
rowKey: (row) =>
`${row.type}:${row.rowId ?? row.uid}:${row.created_at ?? ''}`
`${row.type}:${row.rowId ?? row.uid ?? row.displayName + row.location + row.time}:${row.created_at ?? ''}`
},
pageSize: 20,
pageSizeLinked: true,