提交 8456b337 编写于 作者: N Nemanja Stojanovic

Fixed the refineString bug

上级 8862520c
......@@ -193,7 +193,7 @@ var TracerUtil = {
return $.isNumeric(item) ? this.refineNumber(item) : this.refineString(item);
},
refineString: function (string) {
return string === Infinity ? '' : string;
return string === '' ? ' ' : string;
},
refineNumber: function (number) {
return number === Infinity ? '' : number;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册