fix linux storage volumes 0kb
Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
parent
bc6451fee5
commit
4cd7b408fa
|
@ -6480,9 +6480,13 @@
|
||||||
x += addDetailItem("Capacity", EscapeHtml(fsize), s);
|
x += addDetailItem("Capacity", EscapeHtml(fsize), s);
|
||||||
}
|
}
|
||||||
if (m.available) {
|
if (m.available) {
|
||||||
var sizes = ['KB', 'MB', 'GB', 'TB'];
|
if (Math.abs(m.available) == 0) {
|
||||||
var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
|
var fsize = `0 KB`;
|
||||||
var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
|
} else {
|
||||||
|
var sizes = ['KB', 'MB', 'GB', 'TB'];
|
||||||
|
var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
|
||||||
|
var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
|
||||||
|
}
|
||||||
x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
|
x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
|
||||||
}
|
}
|
||||||
if (m.type) {
|
if (m.type) {
|
||||||
|
|
|
@ -12295,9 +12295,13 @@
|
||||||
x += addDetailItem("Capacity", EscapeHtml(fsize), s);
|
x += addDetailItem("Capacity", EscapeHtml(fsize), s);
|
||||||
}
|
}
|
||||||
if (m.available) {
|
if (m.available) {
|
||||||
var sizes = ['KB', 'MB', 'GB', 'TB'];
|
if (Math.abs(m.available) == 0) {
|
||||||
var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
|
var fsize = `0 KB`;
|
||||||
var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
|
} else {
|
||||||
|
var sizes = ['KB', 'MB', 'GB', 'TB'];
|
||||||
|
var j = parseInt(Math.floor(Math.log(Math.abs(m.available)) / Math.log(1024)), 10);
|
||||||
|
var fsize = (j === 0 ? `${m.available} ${sizes[j]}` : `${(m.available / (1024 ** j)).toFixed(2)} ${sizes[j]}`);
|
||||||
|
}
|
||||||
x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
|
x += addDetailItem("Capacity Remaining", EscapeHtml(fsize), s);
|
||||||
}
|
}
|
||||||
if (m.type) {
|
if (m.type) {
|
||||||
|
|
Loading…
Reference in New Issue