Browse Source

Merge branch 'V20211228' into fix-1184

tags/v1.21.12.2^2
zhoupzh 3 years ago
parent
commit
cb7072cd08
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      templates/repo/modelarts/trainjob/show.tmpl

+ 6
- 1
templates/repo/modelarts/trainjob/show.tmpl View File

@@ -667,7 +667,12 @@ td, th {
html += "</span>"
html += "</td>"
html += "<td class='message seven wide'>"
html += "<span class='truncate has-emoji'>"+ `${dirs_size}` + "</span>"
if(data.Dirs[i].IsDir){
html += "<span class='truncate has-emoji'></span>"
}else{
html += "<span class='truncate has-emoji'>"+ `${dirs_size}` + "</span>"
}
html += "</td>"

html += "<td class='text right age three wide'>"


Loading…
Cancel
Save