Fix SRs in list view.

This commit is contained in:
Julien Fontanet
2015-05-22 12:06:04 +02:00
parent 620c88b615
commit db23fe5a58

View File

@@ -21,7 +21,7 @@ export default angular.module('xoWebApp.list', [
.controller('ListCtrl', function (xoApi) {
this.hosts = xoApi.getView('host')
this.pools = xoApi.getView('pool')
this.SRs = xoApi.getView('pool')
this.SRs = xoApi.getView('SR')
this.VMs = xoApi.getView('VM')
})