ywana-core8 0.0.959 → 0.0.960

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.959",
3
+ "version": "0.0.960",
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
@@ -236,7 +236,7 @@ const DataTableCell = ({ index, row, column, cell, editable }) => {
236
236
  case "TEXTFIELD": return <TextField id={id} value={cell} onChange={(id, value) => onChange(row.id, id, value)} />
237
237
  case "String": return <StringCellEditor id={id} value={cell} options={options} onChange={(id, value) => onChange(row.id, id, value)} />
238
238
  case "Number": return <TextField id={id} type="number" value={cell} min={min} max={max} maxDecimals={column.maxDecimals} onChange={(id, value) => onChange(row.id, id, value)} />
239
- case "Image": return <ImageCellViewer id={id} value={cell} uploadURL={column.uploadURL} onUpload={column.onUpload} />
239
+ case "Image": return <ImageCellViewer id={id} value={cell} uploadURL={column.uploadURL} onUpload={column.onChange} />
240
240
  default: return cell
241
241
  }
242
242
  } else {
@@ -271,10 +271,14 @@ const ImageCellViewer = ({ id, value, uploadURL, onChange }) => {
271
271
  console.error(message)
272
272
  }
273
273
 
274
- return (
274
+ return uploadURL ? (
275
+ <div className="image-cell">
276
+ { value ? <img src={value} /> : <Icon icon="person" />}
277
+ <Uploader icon="cloud_upload" target={uploadURL} onSuccess={success} onError={error} />
278
+ </div>
279
+ ) : (
275
280
  <div className="image-cell">
276
281
  { value ? <img src={value} /> : <Icon icon="person" />}
277
- { uploadURL ? <Uploader icon="cloud_upload" target={uploadURL} onSuccess={success} onError={error} /> : null }
278
282
  </div>
279
283
  )
280
284
  }