Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -14648,7 +14648,7 @@ class HandleDataSource { |
14648 | 14648 | |
14649 | 14649 | const numberValue = Number(value) |
14650 | 14650 | |
14651 | - let newMax = Number('1'.padEnd(value.toString().length + 1, 0)) | |
14651 | + let newMax = Number('1'.padEnd(parseInt(value).toString().length + 1, 0)) | |
14652 | 14652 | |
14653 | 14653 | newMax = newMax < 100 ? 100 : newMax |
14654 | 14654 | ... | ... |