diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index fb38fe067..b35bf74b4 100755
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -2844,7 +2844,7 @@ mirror_sync_create = synced new reference %[2]s to %[2]s at %[3]s from mirror
approve_pull_request = `approved %s#%[2]s`
reject_pull_request = `suggested changes for %s#%[2]s`
-upload_dataset=`upload dataset %s`
+upload_dataset=`upload dataset %s`
task_gpudebugjob=`created CPU/GPU type debugging task%s`
task_npudebugjob=`created NPU type debugging task %s`
task_nputrainjob=`created NPU training task%s`
diff --git a/public/home/home.js b/public/home/home.js
index 478c70f21..d8e423def 100755
--- a/public/home/home.js
+++ b/public/home/home.js
@@ -99,6 +99,11 @@ socket.onmessage = function (e) {
console.log("receive action type=" + record.OpType + " name=" + actionName + " but user is null.");
continue;
}
+ if(record.OpType == "24"){
+ if(record.Content.indexOf("true") != -1){
+ continue;
+ }
+ }
var recordPrefix = getMsg(record);
if(record.OpType == "6" || record.OpType == "10" || record.OpType == "12" || record.OpType == "13"){
html += recordPrefix + actionName;
@@ -162,7 +167,7 @@ socket.onmessage = function (e) {
function getTaskLink(record){
var re = getRepoLink(record);
if(record.OpType == 24){
- re = re + "/datasets?type=" + record.Content;
+ re = re + "/datasets";
}else if(record.OpType == 25){
re = re + "/cloudbrain/" + record.Content;
}else if(record.OpType == 26){