ywana-core8 0.0.993 → 0.0.995
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/dist/index.cjs +4 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/incubator/task.js +2 -1
package/package.json
CHANGED
package/src/incubator/task.js
CHANGED
@@ -177,7 +177,7 @@ export const TaskMonitor = (props) => {
|
|
177
177
|
refresh()
|
178
178
|
}, frequency)
|
179
179
|
return () => { clearInterval(interval) }
|
180
|
-
}, [])
|
180
|
+
}, [filters])
|
181
181
|
|
182
182
|
async function refresh() {
|
183
183
|
const tasks = await context.tasks(filters)
|
@@ -197,6 +197,7 @@ export const TaskMonitor = (props) => {
|
|
197
197
|
{ id: "description", label: "Description" },
|
198
198
|
{ id: "progress", label: "%" },
|
199
199
|
{ id: "percentage", label: "" },
|
200
|
+
{ id: "message", label: "Message" },
|
200
201
|
// { id: "resourceID", label: "Recurso" },
|
201
202
|
// { id: "owner", label: "Propietario" },
|
202
203
|
{ id: "actions", label: "" }
|