ywana-core8 0.0.543 → 0.0.544

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.
@@ -6011,7 +6011,8 @@ var TablePage = function TablePage(props) {
6011
6011
  url = props.url,
6012
6012
  field = props.field,
6013
6013
  host = props.host,
6014
- params = props.params,
6014
+ _props$params = props.params,
6015
+ params = _props$params === void 0 ? "" : _props$params,
6015
6016
  _props$autosave = props.autosave,
6016
6017
  autosave = _props$autosave === void 0 ? true : _props$autosave,
6017
6018
  _props$delay = props.delay,
@@ -6883,6 +6884,10 @@ var TableContext$1 = function TableContext(url, field, host, urlQuery, params) {
6883
6884
 
6884
6885
 
6885
6886
  var TableAPI$1 = function TableAPI(url, host, params) {
6887
+ if (params === void 0) {
6888
+ params = "";
6889
+ }
6890
+
6886
6891
  var http = HTTPClient(host || window.API || process.env.REACT_APP_API, Session);
6887
6892
  return {
6888
6893
  all: function all(filters) {