@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/dist/index.mjs
CHANGED
|
@@ -4875,7 +4875,7 @@ function Spreadsheet({
|
|
|
4875
4875
|
}, [popRedoEntry, onCellsEdit, markAsChanged]);
|
|
4876
4876
|
const paginatedData = useMemo7(() => {
|
|
4877
4877
|
if (serverSide) {
|
|
4878
|
-
return filteredData;
|
|
4878
|
+
return filteredData.toArray();
|
|
4879
4879
|
}
|
|
4880
4880
|
const startIndex = (currentPage - 1) * pageSize;
|
|
4881
4881
|
return filteredData.slice(startIndex, startIndex + pageSize);
|