ywana-core8 0.0.234 → 0.0.235
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 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/domain/TablePage.js +2 -1
package/package.json
CHANGED
package/src/domain/TablePage.js
CHANGED
@@ -315,7 +315,8 @@ const TableEditor = (props) => {
|
|
315
315
|
if (grouper.options) {
|
316
316
|
const options = CHECK['isFunction'](grouper.options) ? grouper.options() : grouper.options
|
317
317
|
const option = options.find(option => option.value === groupName)
|
318
|
-
|
318
|
+
console.log(grouperName, options, option )
|
319
|
+
return option.label ? option.label : groupName+"LABEL NOT FOUND "
|
319
320
|
} else {
|
320
321
|
return groupName
|
321
322
|
}
|