making fields required when adding a vmwareDC to a cloudstack zone

This commit is contained in:
Pranav Saxena 2013-06-25 01:12:42 +05:30
parent 81264cdd9e
commit 1ab0dcdd6a
1 changed files with 3 additions and 3 deletions

View File

@ -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 }
},
}
},