ywana-core8 0.0.143 → 0.0.144

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.143",
3
+ "version": "0.0.144",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
package/src/html/table.js CHANGED
@@ -173,9 +173,10 @@ const BooleanCellViewer = ({ id, value = false }) => {
173
173
  * String Cell Viewer
174
174
  */
175
175
  const StringCellViewer = ({ id, value, options }) => {
176
+ console.log('string-cell-viewer', id, value, options)
176
177
  const option = options ? options.find(o => o.value === value) : null
177
178
  const text = option ? option.label : value
178
- return (<div className="field-editor string-editor">{text}</div>)
179
+ return (<div className="field-editor string-viewer">{text}</div>)
179
180
  }
180
181
 
181
182
  /**