Skip to content

Commit

Permalink
Sunstone host capacity should display gathered data
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Cazacu committed Jan 16, 2024
1 parent 339f9c9 commit c5de4c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ define(function(require) {
*/
var _html = function(info) {
var total = parseInt(info.TOTAL_MB);
var used = total - parseInt(info.FREE_MB);
var used = parseInt(info.USED_MB);

if (total > 0) {
var ratio = Math.round((used / total) * 100);
Expand Down

0 comments on commit c5de4c5

Please sign in to comment.