Skip to content

Commit 7767183

Browse files
committed
[hotfix/6388]
- style fix
1 parent 1c4eeea commit 7767183

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/js/services/rowSorter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ module.service('rowSorter', ['uiGridConstants', function (uiGridConstants) {
122122

123123

124124
function parseNumStr(numStr) {
125-
if (/^\s*-?Infinity\s*$/.test(numStr)) { //check for positive or negative Infinity and return that
125+
if (/^\s*-?Infinity\s*$/.test(numStr)) { // check for positive or negative Infinity and return that
126126
return parseFloat(numStr);
127127
}
128128
return parseFloat(numStr.replace(/[^0-9.eE-]/g, ''));

0 commit comments

Comments
 (0)