CLOUDSTACK-1887:removing the host option from the scope field for primary storage

This commit is contained in:
Pranav Saxena 2013-04-02 14:55:29 +05:30
parent df6b97c194
commit 8d34b5809d

View File

@ -1204,7 +1204,7 @@
if(selectedHypervisorObj.hypervisortype != "KVM"){
var scope=[];
scope.push({ id: 'cluster', description: _l('label.cluster') });
scope.push({ id: 'host', description: _l('label.host') });
//scope.push({ id: 'host', description: _l('label.host') });
args.response.success({data: scope});
}
@ -1212,7 +1212,7 @@
var scope=[];
scope.push({ id: 'zone', description: _l('label.zone.wide') });
scope.push({ id: 'cluster', description: _l('label.cluster') });
scope.push({ id: 'host', description: _l('label.host') });
// scope.push({ id: 'host', description: _l('label.host') });
args.response.success({data: scope});
}