Skip to content

Commit 04b56b0

Browse files
authored
Use proper capitalization in instance metric chart label (#2037)
Capitalize Bytes in instance metric chart
1 parent 55a72c8 commit 04b56b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/pages/project/instances/instance/tabs/MetricsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function DiskMetric({
8686
let unitForSet = ''
8787
let label = '(COUNT)'
8888
if (isBytesChart) {
89-
const byteUnits = ['Bytes', 'KiB', 'MiB', 'GiB', 'TiB']
89+
const byteUnits = ['BYTES', 'KiB', 'MiB', 'GiB', 'TiB']
9090
unitForSet = byteUnits[cycleCount]
9191
label = `(${unitForSet})`
9292
}

0 commit comments

Comments
 (0)