Skip to content

Commit

Permalink
:fix: use lower case k
Browse files Browse the repository at this point in the history
  • Loading branch information
songquanpeng committed Dec 14, 2022
1 parent 23e3952 commit c654d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const processData = (data) => {
if (numStr.endsWith('.0')) {
numStr = numStr.slice(0, -2);
}
numStr += 'K';
numStr += 'k';
}
data[attr] = numStr;
}
Expand Down

0 comments on commit c654d91

Please sign in to comment.