ywana-core8 0.0.972 → 0.0.973

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.972",
3
+ "version": "0.0.973",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
package/src/html/table.js CHANGED
@@ -415,7 +415,7 @@ const StringCellViewer = ({ id, value, format, options, action }) => {
415
415
  const locale = window.navigator.userLanguage || window.navigator.language;
416
416
  switch (format) {
417
417
  case FORMATS.TOKENS:
418
- text = value && Array.isArray(value) ? value.map(token => <span className="token">{token}</span>).join(", ") : value
418
+ text = value && Array.isArray(value) ? value.join(", ") : value
419
419
  break;
420
420
  case FORMATS.COLOR:
421
421
  text = <input type="color" value={text} disabled />