@dust-tt/sparkle 0.2.172 → 0.2.173
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/stories/PaginatedCitationsGrid.stories.d.ts +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/stories/PaginatedCitationsGrid.stories.d.ts +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/esm/index.js
CHANGED
|
@@ -77881,7 +77881,7 @@ function PaginatedCitationsGrid(_a) {
|
|
|
77881
77881
|
var items = _a.items, _b = _a.maxItemsPerPage, maxItemsPerPage = _b === void 0 ? 9 : _b;
|
|
77882
77882
|
var _c = __read(useState(1), 2), currentPage = _c[0], setCurrentPage = _c[1];
|
|
77883
77883
|
var cols = 3;
|
|
77884
|
-
var rows = Math.ceil(maxItemsPerPage / cols);
|
|
77884
|
+
var rows = Math.ceil(Math.min(maxItemsPerPage, items.length) / cols);
|
|
77885
77885
|
if (items.length === 0) {
|
|
77886
77886
|
return null;
|
|
77887
77887
|
}
|