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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -90,7 +90,7 @@ export const TablePage = (props) => {
90
90
  }
91
91
 
92
92
  function renderAside() {
93
- if ((selected && form) ||(pageContext.checked.length > 0)) {
93
+ if ((selected && form) ||(pageContext.checked && pageContext.checked.length > 0)) {
94
94
  const content = new Content(schema, form)
95
95
  return (
96
96
  <aside className="table-page">
@@ -356,7 +356,7 @@ const TableContext = (url, field) => {
356
356
  return {
357
357
 
358
358
  all: [],
359
- checked: new Set(),
359
+ checked: new Set([]),
360
360
  selected: null,
361
361
  filters: {},
362
362