mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-17 22:03:50 +02:00
fix
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user