Fix error text if the node has 0 disk/memory usage

This commit is contained in:
Hirzi
2024-05-17 20:25:36 +07:00
committed by GitHub
parent c5d9f87eb4
commit 90076146b4
+2 -2
View File
@@ -37,9 +37,9 @@ module.exports = (value, type) => {
return result;
} else {
return "INVALID VALUE";
return "0";
}
} else {
return "ERROR";
return "0";
}
};