summaryrefslogtreecommitdiffstats
path: root/install/ui/entity.js
diff options
context:
space:
mode:
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);