round小数位默认改成2

This commit is contained in:
rickcole 2020-06-01 15:01:59 +08:00
parent f6e7259287
commit 904821d567
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ export const filters: {
},
duration: input => (input ? formatDuration(input) : input),
bytes: input => (input ? prettyBytes(parseFloat(input)) : input),
round: (input, decimals = 0) => {
round: (input, decimals = 2) => {
if (isNaN(input)) {
return 0;
}