Make dashboard disk stat not break on non-Unix machines (note it will not correctly report stat still) (#9962)

Co-authored-by: Max Fitton <max@semprehealth.com>
This commit is contained in:
Max Fitton
2020-08-06 13:00:26 -07:00
committed by SangBin Cho
parent 735cc40162
commit beed3dd772
@@ -15,8 +15,10 @@ export const ClusterDisk: ClusterFeatureRenderFn = ({ nodes }) => {
let used = 0;
let total = 0;
for (const node of nodes) {
used += node.disk["/"].used;
total += node.disk["/"].total;
if ("/" in node.disk) {
used += node.disk["/"].used;
total += node.disk["/"].total;
}
}
return (
<UsageBar