Fix feed bug

This commit is contained in:
Natsumi
2026-01-31 07:35:57 +13:00
committed by pa
parent a5ea69ba22
commit 1fbb19d50b
+1 -1
View File
@@ -95,7 +95,7 @@
}, },
persistKey: 'feed', persistKey: 'feed',
columns: baseColumns, columns: baseColumns,
getRowId: (row) => `${row.type}:${row.rowId}:${row.created_at ?? ''}`, getRowId: (row, index) => `${row.type}:${row.created_at ?? ''}:${row.rowId ?? index}`,
enableExpanded: true, enableExpanded: true,
getRowCanExpand: () => true, getRowCanExpand: () => true,
initialSorting: [], initialSorting: [],