Skip to content

Commit e27b3d3

Browse files
authored
Merge pull request #2492 from entrylabs/develop
[#6047] 테이블 빈값 처리 수정
2 parents 184bb28 + 631b2e6 commit e27b3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Common = {
4545
if (Array.isArray(str)) {
4646
return str.map((x) => Common.toNumber(x));
4747
}
48-
if (!_isNaN(parseInt(str, 10))) {
48+
if (!_isNaN(parseInt(str, 10)) && !_isNaN(_toNumber(str))) {
4949
return _toNumber(str);
5050
}
5151
return str;

0 commit comments

Comments
 (0)