Skip to content

Commit

Permalink
M #-: Sunstone host capacity should display gathered data
Browse files Browse the repository at this point in the history
(cherry picked from commit c5de4c5)
  • Loading branch information
Dan Cazacu authored and rsmontero committed Jan 16, 2024
1 parent 287d049 commit 1cf07c3
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 1cf07c3

Please sign in to comment.