summaryrefslogtreecommitdiffstats
path: root/install/ui/service.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/service.js')
-rw-r--r--install/ui/service.js15
1 files changed, 5 insertions, 10 deletions
diff --git a/install/ui/service.js b/install/ui/service.js
index 7fc154722..1d2a2485b 100644
--- a/install/ui/service.js
+++ b/install/ui/service.js
@@ -28,11 +28,6 @@ IPA.entity_factories.service = function() {
return IPA.entity({
name: 'service'
}).
- association({
- name: 'host',
- add_method: 'add_host',
- remove_method: 'remove_host'
- }).
facet(
IPA.search_facet().
column({name: 'krbprincipalname'}).
@@ -44,11 +39,11 @@ IPA.entity_factories.service = function() {
}))).
facet(IPA.service_details_facet()).
facet(IPA.service_managedby_host_facet({
- name: 'managedby_host',
- label: IPA.messages.association.managedby +
- ' '+IPA.metadata['host'].label,
- other_entity: 'host'
- }));
+ name: 'managedby_host',
+ add_method: 'add_host',
+ remove_method: 'remove_host'
+ })).
+ standard_associations();
};