From 505a9ad982e36854ffeda2f6b11a2dbbb9e89e62 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 43f57e3ea27..1aea9c47bc7 100644 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -1387,7 +1387,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}); });