You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2012/08/01 23:36:52 UTC

git commit: CS-15740: Show 'please select a tier' instead of blank default option

Updated Branches:
  refs/heads/vpc 379ba3b29 -> 6ad7f2f80


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.


Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/6ad7f2f8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/6ad7f2f8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/6ad7f2f8

Branch: refs/heads/vpc
Commit: 6ad7f2f80b18887f46000950606890d58f506b7a
Parents: 379ba3b
Author: Brian Federle <br...@citrix.com>
Authored: Wed Aug 1 14:28:07 2012 -0700
Committer: Brian Federle <br...@citrix.com>
Committed: Wed Aug 1 14:36:46 2012 -0700

----------------------------------------------------------------------
 ui/scripts/network.js |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/6ad7f2f8/ui/scripts/network.js
----------------------------------------------------------------------
diff --git a/ui/scripts/network.js b/ui/scripts/network.js
index b02bb80..156443f 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});
                             });