From cd803fd2ebecc12e56b8efff7a28936ff9574683 Mon Sep 17 00:00:00 2001 From: zouap Date: Wed, 2 Mar 2022 11:05:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E4=BB=A3=E7=A0=81=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zouap --- public/home/home.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/home/home.js b/public/home/home.js index 90b0c7745..16f229bf6 100644 --- a/public/home/home.js +++ b/public/home/home.js @@ -135,7 +135,7 @@ socket.onmessage = function (e) { } else if(record.OpType == "25" || record.OpType == "29"){ html += recordPrefix + actionName; - html += " " + record.Content + "" + html += " " + record.RefName + "" } else{ continue; @@ -158,7 +158,7 @@ function getTaskLink(record){ if(record.OpType == 24){ return re + "/datasets?type=" + record.Content; }else if(record.OpType == 25){ - return re + "/cloudbrain/" + record.RefName; + return re + "/cloudbrain/" + record.Content; }else if(record.OpType == 26){ return re + "/modelarts/notebook/" + record.Content; }else if(record.OpType == 27){ @@ -166,7 +166,7 @@ function getTaskLink(record){ }else if(record.OpType == 28){ return re + "/modelarts/inference-job/" + record.Content; }else if(record.OpType == 29){ - return re + "/cloudbrain/benchmark/" + record.RefName; + return re + "/cloudbrain/benchmark/" + record.Content; }else if(record.OpType == 30){ return re + "/modelmanage/show_model_info?name=" + record.RefName; }