From 65eb8d93f28515d49831a0f97ecc14ba904d33db Mon Sep 17 00:00:00 2001 From: nathanliu2022 <103086238+nathanliu2022@users.noreply.github.com> Date: Wed, 15 Jun 2022 17:25:41 +0800 Subject: [PATCH] Update ApiReportDetail.vue --- .../components/api/automation/report/ApiReportDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/api/automation/report/ApiReportDetail.vue b/frontend/src/business/components/api/automation/report/ApiReportDetail.vue index fb814848dd..4fa0e22acd 100644 --- a/frontend/src/business/components/api/automation/report/ApiReportDetail.vue +++ b/frontend/src/business/components/api/automation/report/ApiReportDetail.vue @@ -440,7 +440,7 @@ export default { if(origin.children && Array.isArray(origin.children)){ origin.children.sort((m,n)=>{ let mTime = m.value ? m.value.startTime ? m.value.startTime : 0 : 0; - let nTime = m.value ? n.value.startTime ? n.value.startTime : 0 : 0; + let nTime = n.value ? n.value.startTime ? n.value.startTime : 0 : 0; return mTime <= nTime; }) origin.children.forEach(v => {