ywana-core8 0.0.995 → 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.995",
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,9 +195,9 @@ 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
- { id: "message", label: "Message" },
201
201
  // { id: "resourceID", label: "Recurso" },
202
202
  // { id: "owner", label: "Propietario" },
203
203
  { id: "actions", label: "" }
@@ -216,6 +216,7 @@ export const TaskMonitor = (props) => {
216
216
  id: task.id,
217
217
  state: <Text>{task.state}</Text>,
218
218
  description: task.description,
219
+ message: task.message,
219
220
  progress: <LinearProgress progress={task.percentage} />,
220
221
  percentage: task.percentage,
221
222
  init: task.init,