From 81fd790cda41644d21b9deecdc5c6e3c50155b3d Mon Sep 17 00:00:00 2001 From: Adam Young Date: Tue, 1 Mar 2011 21:21:19 -0500 Subject: 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. --- install/ui/host.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'install/ui/host.js') 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(); }; -- cgit