This commit is contained in:
Natsumi
2025-12-17 00:54:53 +13:00
parent c6f8698209
commit 622506c7a0
2 changed files with 2 additions and 4 deletions

View File

@@ -31,8 +31,7 @@ export const useFeedStore = defineStore('Feed', () => {
prop: 'created_at',
order: 'descending'
},
rowKey: (row) =>
`${row.type}:${row.rowId()}:${row.created_at ?? ''}`
rowKey: (row) => `${row.type}:${row.rowId}:${row.created_at ?? ''}`
},
pageSize: 20,
pageSizeLinked: true,

View File

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