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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +2 -2
package/package.json
CHANGED
package/src/domain/TablePage.js
CHANGED
@@ -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
|
|