Skip to content

Commit

Permalink
fix: correct the unit of byte from B to G (#1398)
Browse files Browse the repository at this point in the history
  • Loading branch information
onlyacat authored Aug 29, 2022
1 parent d0c770c commit 50efd65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function ShortValueWithTooltip({
)
}

const bytesScaler = scaledUnits(1024, ['', 'K', 'M', 'B', 'T'])
const bytesScaler = scaledUnits(1024, ['', 'K', 'M', 'G', 'T'])

function ScaledBytesWithTooltip({
value = 0,
Expand Down

0 comments on commit 50efd65

Please sign in to comment.