summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/app/desktop/views/components/charts.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/components/charts.vue b/src/client/app/desktop/views/components/charts.vue
index 37d95577cd..e400aebbb7 100644
--- a/src/client/app/desktop/views/components/charts.vue
+++ b/src/client/app/desktop/views/components/charts.vue
@@ -394,7 +394,7 @@ export default Vue.extend({
yAxes: [{
ticks: {
callback: value => {
- return Vue.filter('bytes')(value);
+ return Vue.filter('bytes')(value, 1);
}
}
}]
@@ -403,7 +403,7 @@ export default Vue.extend({
callbacks: {
label: (tooltipItem, data) => {
const label = data.datasets[tooltipItem.datasetIndex].label || '';
- return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel)}`;
+ return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel, 1)}`;
}
}
}