@xcelsior/ui-spreadsheets 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.omc/state/agent-replay-0cead415-b3bd-40fd-b199-47371946c4db.jsonl +2 -0
- package/.omc/state/idle-notif-cooldown.json +1 -1
- package/.omc/state/mission-state.json +31 -21
- package/.omc/state/subagent-tracking.json +12 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/Spreadsheet.tsx +1 -1
package/package.json
CHANGED
|
@@ -465,7 +465,7 @@ export function Spreadsheet<T extends Record<string, any>>({
|
|
|
465
465
|
const paginatedData = useMemo(() => {
|
|
466
466
|
if (serverSide) {
|
|
467
467
|
// In server-side mode, data is already paginated by the server
|
|
468
|
-
return filteredData;
|
|
468
|
+
return filteredData.toArray();
|
|
469
469
|
}
|
|
470
470
|
const startIndex = (currentPage - 1) * pageSize;
|
|
471
471
|
return filteredData.slice(startIndex, startIndex + pageSize);
|