ywana-core8 0.0.118 → 0.0.119

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.
@@ -4167,7 +4167,7 @@ var TablePage = function TablePage(props) {
4167
4167
  }
4168
4168
 
4169
4169
  function renderAside() {
4170
- if (selected && form || pageContext.checked.length > 0) {
4170
+ if (selected && form || pageContext.checked && pageContext.checked.length > 0) {
4171
4171
  var content = new Content(schema, form);
4172
4172
  return /*#__PURE__*/React.createElement("aside", {
4173
4173
  className: "table-page"
@@ -4533,7 +4533,7 @@ var TableContext = function TableContext(url, field) {
4533
4533
  var API = TableAPI(url);
4534
4534
  return {
4535
4535
  all: [],
4536
- checked: new Set(),
4536
+ checked: new Set([]),
4537
4537
  selected: null,
4538
4538
  filters: {},
4539
4539
  load: function load(filter) {