ywana-core8 0.0.167 → 0.0.168

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/index.cjs CHANGED
@@ -4243,13 +4243,12 @@ var TablePage = function TablePage(props) {
4243
4243
 
4244
4244
  function renderActions() {
4245
4245
  return actions.map(function (element) {
4246
- console.log("renderActions", element.props, pageContext);
4247
-
4248
4246
  var action = function action() {
4249
4247
  return element.props.action(pageContext, "a");
4250
4248
  };
4251
4249
 
4252
4250
  var clone = React__default["default"].cloneElement(element, [action]);
4251
+ console.log("renderActions", clone);
4253
4252
  return clone;
4254
4253
  });
4255
4254
  }