mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 11:03:09 +02:00
✌️
This commit is contained in:
parent
fb4aa9bc1c
commit
1c1e3009e9
1 changed files with 2 additions and 2 deletions
|
@ -318,7 +318,7 @@ export default Vue.extend({
|
||||||
yAxes: [{
|
yAxes: [{
|
||||||
ticks: {
|
ticks: {
|
||||||
callback: value => {
|
callback: value => {
|
||||||
return Vue.filter('bytes')(value);
|
return Vue.filter('bytes')(value, 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
@ -327,7 +327,7 @@ export default Vue.extend({
|
||||||
callbacks: {
|
callbacks: {
|
||||||
label: (tooltipItem, data) => {
|
label: (tooltipItem, data) => {
|
||||||
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
const label = data.datasets[tooltipItem.datasetIndex].label || '';
|
||||||
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel)}`;
|
return `${label}: ${Vue.filter('bytes')(tooltipItem.yLabel, 1)}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue