ywana-core8 0.0.758 → 0.0.759

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.758",
3
+ "version": "0.0.759",
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
@@ -280,7 +280,7 @@ const StringCellViewer = ({ id, value, format, options, action }) => {
280
280
  text = new Date(text).toLocaleString(locale, { year: 'hour', month: 'minute', day: 'second' });
281
281
  break;
282
282
  }
283
- return (<div className={`field-editor string-viewer ${className}`}>{text}</div>)
283
+ return (<div className={`field-editor string-viewer ${className}`} title={text}>{text}</div>)
284
284
  }
285
285
 
286
286
  /**