fix: proper unit for up/dl speed in graph (#548)

This commit is contained in:
Tsvetomir Bonev 2022-11-22 10:10:15 +02:00 committed by GitHub
parent 49ec8a9194
commit a6dac31fbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ export default {
},
y: {
formatter: value => {
return `${getDataValue(value, 0)} ${getDataUnit(value)}`
return `${getDataValue(value, 0)} ${getDataUnit(value)}/s`
}
}
}