Browse Source

Merge pull request 'fix-2066 翻页后类型筛选框为空' (#2067) from fix-2066 into V20220519

Reviewed-on: https://git.openi.org.cn/OpenI/aiforge/pulls/2067
Reviewed-by: wangjr <wangjr@pcl.ac.cn>
fix-2055
wangjr 3 years ago
parent
commit
3ce5a596c2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      templates/repo/modelarts/trainjob/index.tmpl

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

@@ -239,7 +239,7 @@ const params = new URLSearchParams(location.search)
if(!location.search){ if(!location.search){
$('.default.text').text(all) $('.default.text').text(all)
}else{ }else{
if(params.has('listType') && params.get('listType')=='all'){
if(!params.has('listType') || params.get('listType')=='all'){
$('.default.text').text(all) $('.default.text').text(all)
} }
else{ else{


Loading…
Cancel
Save