From dfb71cffe8a9e23905eb76bec2bf1b393ba6a96f Mon Sep 17 00:00:00 2001 From: Fine Date: Mon, 30 Dec 2024 15:23:42 +0800 Subject: [PATCH] fix duration --- .../dashboard/related/async-profiling/components/TaskList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/dashboard/related/async-profiling/components/TaskList.vue b/src/views/dashboard/related/async-profiling/components/TaskList.vue index 7b8b3e24..e1ddf785 100644 --- a/src/views/dashboard/related/async-profiling/components/TaskList.vue +++ b/src/views/dashboard/related/async-profiling/components/TaskList.vue @@ -41,7 +41,7 @@ limitations under the License. --> {{ dateFormat(i.createTime) }} - {{ dateFormat(i.createTime + i.duration * 60 * 1000) }} + {{ dateFormat(i.createTime + i.duration * 1000) }}