diff --git a/CHANGES.md b/CHANGES.md index 6738f5b29..ce8065f21 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -34,6 +34,9 @@ New tabs now open on top. ### Fixes +[#1164](https://github.com/cylc/cylc-ui/pull/1164) - +Fix the mean run time column in the table view. + [#1108](https://github.com/cylc/cylc-ui/pull/1108) - Tree view: Task outputs are now correctly associated with the jobs that created them. diff --git a/src/components/cylc/table/Table.vue b/src/components/cylc/table/Table.vue index 7714e0b86..207ff3ccb 100644 --- a/src/components/cylc/table/Table.vue +++ b/src/components/cylc/table/Table.vue @@ -115,7 +115,7 @@ along with this program. If not, see . {{ ((item.latestJob || {}).node || {}).submittedTime }} {{ ((item.latestJob || {}).node || {}).startedTime }} {{ ((item.latestJob || {}).node || {}).finishedTime }} - {{ item.task.node.meanElapsedTime }} + {{ dtMean(item.task) }}