ywana-core8 0.0.994 → 0.0.996

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.994",
3
+ "version": "0.0.996",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -195,6 +195,7 @@ export const TaskMonitor = (props) => {
195
195
  { id: "init", label: "Init Date", type: TYPES.STRING, format: FORMATS.DATE },
196
196
  { id: "end", label: "End Date", type: TYPES.STRING, format: FORMATS.DATE },
197
197
  { id: "description", label: "Description" },
198
+ { id: "message", label: "Message" },
198
199
  { id: "progress", label: "%" },
199
200
  { id: "percentage", label: "" },
200
201
  // { id: "resourceID", label: "Recurso" },
@@ -215,6 +216,7 @@ export const TaskMonitor = (props) => {
215
216
  id: task.id,
216
217
  state: <Text>{task.state}</Text>,
217
218
  description: task.description,
219
+ message: task.message,
218
220
  progress: <LinearProgress progress={task.percentage} />,
219
221
  percentage: task.percentage,
220
222
  init: task.init,