提交 c08dd576 编写于 作者: F Floran Brutel

🐛 Fix loading of the raid plugin in the web UI

上级 92b4e1ad
......@@ -3,7 +3,7 @@ glancesApp.service('GlancesPluginRaid', function () {
this.disks = [];
this.setData = function (data, views) {
this.disks = [];
var disks = [];
data = data[_pluginName];
_.forIn(data, function(diskData, diskKey) {
......@@ -26,8 +26,10 @@ glancesApp.service('GlancesPluginRaid', function () {
});
});
this.disks.push(disk);
}, this);
disks.push(disk);
});
this.disks = disks;
};
this.hasDisks = function() {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册