From 09f3e9869a27adc8c07c305a2aa5107690aa1d04 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 19 Oct 2011 18:11:09 -0200 Subject: 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 --- install/ui/policy.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'install/ui/policy.js') 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(); -- cgit