Skip to content

Commit

Permalink
修复数据集参数表单对于数值型下拉框或单选框始终校验不通过的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
zheyangrensheng committed Feb 6, 2023
1 parent 18abae6 commit 2fa211c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1245,7 +1245,7 @@
if(!myValid)
break;

var val = $(this).attr("value");
var val = $(checkeds[i]).attr("value");
myValid = (val == "" ? true : regexNumber.test(val));
}

Expand Down

0 comments on commit 2fa211c

Please sign in to comment.