@economic/taco 2.67.1-footer-fix.0 → 2.67.1-footer-fix.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/dist/taco.cjs +2 -1
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.js +2 -1
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.cjs
CHANGED
@@ -37948,10 +37948,11 @@ function useTableRenderer(renderers, table, tableRef, length, defaultRowActiveIn
|
|
37948
37948
|
row = rows[virtualRow.index];
|
37949
37949
|
}
|
37950
37950
|
if (!(row == null ? void 0 : row.original)) {
|
37951
|
+
const skeletonKey = `skeleton-${virtualRow.index}-${JSON.stringify(table.getState().sorting).slice(0, 8)}`;
|
37951
37952
|
return /* @__PURE__ */ React.createElement(
|
37952
37953
|
SkeletonRow,
|
37953
37954
|
{
|
37954
|
-
key:
|
37955
|
+
key: skeletonKey,
|
37955
37956
|
index: virtualRow.index,
|
37956
37957
|
scrollDirection: virtualiser.scrollDirection ?? void 0,
|
37957
37958
|
table
|