Skip to content

Commit

Permalink
Closes-Bug: #1551229 Fixed Sensor Stats and File System info not gett…
Browse files Browse the repository at this point in the history
…ing populated in SM Monitoring UI

Change-Id: I8cb78cf2df4106c93f932a9bdaeb45d81553988a
  • Loading branch information
czanpure committed Mar 3, 2016
1 parent 95773fb commit 76cb9d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webroot/common/ui/js/sm.grid.config.js
Expand Up @@ -96,7 +96,7 @@ define([
{
id: "status", field: "status", name: "Status", width: 120, minWidth: 15,
formatter: function(r, c, v, cd, dc) {
return cowf.getTextGenerator('status-state', dc.status)
return cowf.getFormattedValue('status-state', dc.status)
}
}
];
Expand Down Expand Up @@ -125,7 +125,7 @@ define([
}},
{id: "used_percentage", field: "used_percentage", name: "Used", width: 80, minWidth: 15,
formatter: function(r, c, v, cd, dc) {
return cowf.getTextGenerator('alert-percentage', dc.used_percentage)
return cowf.getFormattedValue('alert-percentage', dc.used_percentage)
}
}
];
Expand Down

0 comments on commit 76cb9d8

Please sign in to comment.