summaryrefslogtreecommitdiffstats
path: root/install/ui/entity.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-06-13 16:18:48 -0500
committerAdam Young <ayoung@redhat.com>2011-06-15 19:46:56 -0400
commit82fbfbd773fb6b97ad30852c4692148fb9575b39 (patch)
treee782fbec279e238a4db9fab1bfd9f37e9481b31e /install/ui/entity.js
parent17dccbdeccc037886b7d3335343a967df72555e8 (diff)
downloadfreeipa-82fbfbd773fb6b97ad30852c4692148fb9575b39.tar.gz
freeipa-82fbfbd773fb6b97ad30852c4692148fb9575b39.tar.xz
freeipa-82fbfbd773fb6b97ad30852c4692148fb9575b39.zip
Fixed paging for indirect members.
Since ticket #1273 has been fixed, the indirect members can be shown using the regular association facet which supports paging.
Diffstat (limited to 'install/ui/entity.js')
-rw-r--r--install/ui/entity.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/install/ui/entity.js b/install/ui/entity.js
index 107c3c4d4..599bd2eec 100644
--- a/install/ui/entity.js
+++ b/install/ui/entity.js
@@ -812,15 +812,7 @@ IPA.entity_builder = function(){
}
}
- var factory = spec.factory;
- if (!factory) {
- if (spec.facet_group == 'memberindirect') {
- factory = IPA.indirect_association_facet;
- } else {
- factory = IPA.association_facet;
- }
- }
-
+ var factory = spec.factory || IPA.association_facet;
facet = factory(spec);
entity.add_facet(facet);