trotl-table 1.0.82 → 1.0.83

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/Table.cjs.js CHANGED
@@ -10547,9 +10547,9 @@ function TableInner({
10547
10547
 
10548
10548
  // Custom column type (editable in-table)
10549
10549
  if (col && col.type === "custom") {
10550
- const customComp = col["modal-comp"];
10551
- if (customComp) {
10552
- return /*#__PURE__*/React.createElement("customComp", {
10550
+ const CustomComp = col["modal-comp"];
10551
+ if (CustomComp) {
10552
+ return /*#__PURE__*/React.createElement(CustomComp, {
10553
10553
  value: v
10554
10554
  });
10555
10555
  }