ywana-core8 0.0.674 → 0.0.675

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.674",
3
+ "version": "0.0.675",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -433,7 +433,7 @@ export const TableEditor = (props) => {
433
433
 
434
434
  const groups = items.reduce((groups, item) => {
435
435
  let groupName = item[groupBy]
436
- if (!groupName) groupName=`SIN ${groupBy}`.toUpperCase()
436
+ if (!groupName) groupName=`NO ${groupBy}`.toUpperCase()
437
437
  if (groupName === false) groupName = `NO ${groupBy}`.toUpperCase()
438
438
  if (groupName === true) groupName = `SI ${groupBy}`.toUpperCase()
439
439
  const group = groups[groupName]