From 8d34b5809d459eac90eea1f01cc5b20dedb39f11 Mon Sep 17 00:00:00 2001 From: Pranav Saxena Date: Tue, 2 Apr 2013 14:55:29 +0530 Subject: [PATCH] CLOUDSTACK-1887:removing the host option from the scope field for primary storage --- ui/scripts/zoneWizard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js index 76fd5e9f358..8add9bb085e 100755 --- a/ui/scripts/zoneWizard.js +++ b/ui/scripts/zoneWizard.js @@ -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}); }