diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-10-19 18:11:09 -0200 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-10-25 15:11:12 +0000 |
commit | 09f3e9869a27adc8c07c305a2aa5107690aa1d04 (patch) | |
tree | 6712f2293f864e0d314e3c340c90be272ded22fa /install/ui/policy.js | |
parent | b4ebcad0e0f27ffcad73aa9bd7246f89d0dd7c9f (diff) | |
download | freeipa.git-09f3e9869a27adc8c07c305a2aa5107690aa1d04.tar.gz freeipa.git-09f3e9869a27adc8c07c305a2aa5107690aa1d04.tar.xz freeipa.git-09f3e9869a27adc8c07c305a2aa5107690aa1d04.zip |
Fixed inconsistent required/optional attributes.
The dialogs and details pages have been modified to use the * symbol
to mark required fields. The automount map and the DNS zone dialogs
have been modified to update the required fields according to the
input type.
Ticket #1696, #1973
Diffstat (limited to 'install/ui/policy.js')
-rw-r--r-- | install/ui/policy.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/install/ui/policy.js b/install/ui/policy.js index 7fbf5600..54321a48 100644 --- a/install/ui/policy.js +++ b/install/ui/policy.js @@ -52,14 +52,16 @@ IPA.entity_factories.pwpolicy = function() { }]}). standard_association_facets(). adder_dialog({ - fields:[ + fields: [ { factory: IPA.entity_select_widget, name: 'cn', other_entity: 'group', - other_field: 'cn' + other_field: 'cn', + required: true }, - 'cospriority'], + 'cospriority' + ], height: 300 }). build(); |