From 851a8e3fbd0b4da4ba8ccdb55daa591b115f886f Mon Sep 17 00:00:00 2001 From: pa Date: Sat, 20 Dec 2025 01:35:55 +0900 Subject: [PATCH] fix gamelog row key duplication --- src/stores/gameLog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/gameLog.js b/src/stores/gameLog.js index 4a3ed5a3..8d3e584e 100644 --- a/src/stores/gameLog.js +++ b/src/stores/gameLog.js @@ -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,