diff options
Diffstat (limited to 'install/ui/policy.js')
-rw-r--r-- | install/ui/policy.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/install/ui/policy.js b/install/ui/policy.js index fbabd083..d48cacc4 100644 --- a/install/ui/policy.js +++ b/install/ui/policy.js @@ -29,9 +29,10 @@ IPA.pwpolicy.entity = function(spec) { var that = IPA.entity(spec); - that.init = function(params) { + that.init = function() { + that.entity_init(); - params.builder.search_facet({ + that.builder.search_facet({ columns:['cn','cospriority']}). details_facet({ sections:[ @@ -79,9 +80,10 @@ IPA.krbtpolicy.entity = function(spec) { var that = IPA.entity(spec); - that.init = function(params) { + that.init = function() { + that.entity_init(); - params.builder.details_facet({ + that.builder.details_facet({ title: IPA.metadata.objects.krbtpolicy.label, sections: [ { |