From 4a45fb2a1fd1f2e84acf7a6a6c9e18f024007ceb Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Tue, 6 Dec 2011 14:13:01 -0800 Subject: [PATCH] cloudStack 3.0 new UI - register ISO - shouldn't have "None" option when ISO is bootable. --- ui/scripts/templates.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/templates.js b/ui/scripts/templates.js index 7b630191b65..7404462ec93 100644 --- a/ui/scripts/templates.js +++ b/ui/scripts/templates.js @@ -806,7 +806,7 @@ success: function(json) { var osTypeObjs = json.listostypesresponse.ostype; var items = []; - items.push({id: "", description: "None"}); + //items.push({id: "", description: "None"}); //shouldn't have None option when bootable is checked $(osTypeObjs).each(function(){ items.push({id: this.id, description: this.description}); });