summaryrefslogtreecommitdiffstats
path: root/install/ui/host.js
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-03-01 21:21:19 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-03-02 19:11:28 -0500
commit81fd790cda41644d21b9deecdc5c6e3c50155b3d (patch)
treefbbdf3d808636a3be039aab313d49f8af1481a52 /install/ui/host.js
parentcd61ef61ad9bbfecd84dc7199d17af9e7031ef2d (diff)
downloadfreeipa-81fd790cda41644d21b9deecdc5c6e3c50155b3d.tar.gz
freeipa-81fd790cda41644d21b9deecdc5c6e3c50155b3d.tar.xz
freeipa-81fd790cda41644d21b9deecdc5c6e3c50155b3d.zip
Use modified entity find commands for associations
https://fedorahosted.org/freeipa/ticket/1011 Does not completely fix the problem in the ticket, but it does mitigate the failure.
Diffstat (limited to 'install/ui/host.js')
-rw-r--r--install/ui/host.js10
1 files changed, 2 insertions, 8 deletions
diff --git a/install/ui/host.js b/install/ui/host.js
index 981bfc02..9ef7553e 100644
--- a/install/ui/host.js
+++ b/install/ui/host.js
@@ -50,7 +50,7 @@ IPA.entity_factories.host = function () {
that.add_facet(facet);
facet = IPA.host_managedby_host_facet({
- 'name': 'managedby_host'
+ name: 'managedby_host'
});
that.add_facet(facet);
@@ -503,18 +503,12 @@ IPA.host_managedby_host_facet = function (spec) {
}).appendTo(container);
};
- that.create_column({name: 'description'});
-
that.create_adder_column({
name: 'fqdn',
primary_key: true,
- width: '100px'
+ width: '200px'
});
- that.create_adder_column({
- name: 'description',
- width: '100px'
- });
that.association_facet_init();
};