From 6ad7f2f80b18887f46000950606890d58f506b7a Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 1 Aug 2012 14:28:07 -0700 Subject: [PATCH] CS-15740: Show 'please select a tier' instead of blank default option For VPC enable static NAT dialog, a tier always needs to be selected -- this is now indicated in the default option select. --- ui/scripts/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/network.js b/ui/scripts/network.js index b02bb801118..156443f2dde 100644 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -1388,7 +1388,7 @@ }, success: function(json) { var networks = json.listnetworksresponse.network; - var items = [{ id: -1, description: '' }]; + var items = [{ id: -1, description: 'Please select a tier' }]; $(networks).each(function(){ items.push({id: this.id, description: this.displaytext}); });