Updated Branches: refs/heads/master-6-17-stable 81264cdd9 -> 1ab0dcdd6
making fields required when adding a vmwareDC to a cloudstack zone Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1ab0dcdd Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1ab0dcdd Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1ab0dcdd Branch: refs/heads/master-6-17-stable Commit: 1ab0dcdd6afce50034c885a30c2eeb3ee300dd9b Parents: 81264cd Author: Pranav Saxena <[email protected]> Authored: Tue Jun 25 01:12:42 2013 +0530 Committer: Pranav Saxena <[email protected]> Committed: Tue Jun 25 01:16:28 2013 +0530 ---------------------------------------------------------------------- ui/scripts/system.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1ab0dcdd/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index f2e78b5..03ac411 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -5385,7 +5385,7 @@ title: 'Add VMware datacenter', fields: { name: { - label: 'label.name', + label: 'DC Name', validation: { required: true } }, vcenter: { @@ -5394,12 +5394,12 @@ }, username: { label: 'label.username', - validation: { required: false } + validation: { required: true } }, password: { label: 'label.password', isPassword: true, - validation: { required: false } + validation: { required: true } }, } },
