diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-07-18 15:07:18 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-07-18 16:48:07 -0400 |
commit | 630ca4f40ad3b5851001555641aa015f5fb544d6 (patch) | |
tree | e9e375007b0a05af7f0adf8756411b234e0c9ea1 /install/ui/host.js | |
parent | 538c7a7eb82954f144f9f823c4fecc170c113c7c (diff) | |
download | freeipa-630ca4f40ad3b5851001555641aa015f5fb544d6.tar.gz freeipa-630ca4f40ad3b5851001555641aa015f5fb544d6.tar.xz freeipa-630ca4f40ad3b5851001555641aa015f5fb544d6.zip |
Fixed host details fields.
The host details facet has been fixed to remove a redundant field
and include some missing fields.
Ticket #1484
Diffstat (limited to 'install/ui/host.js')
-rw-r--r-- | install/ui/host.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/install/ui/host.js b/install/ui/host.js index 14f16d93d..9994abf31 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -37,20 +37,20 @@ IPA.entity_factories.host = function () { }). details_facet({sections:[ { - name:'details', + name: 'details', fields: [ - { factory: IPA.host_dnsrecord_entity_link_widget, - name: 'fqdn', - other_entity:'dnsrecord' - }, - 'krbprincipalname', { - factory: IPA.text_widget, - name: 'cn', - label: IPA.messages.objects.host.cn, - read_only: true + factory: IPA.host_dnsrecord_entity_link_widget, + name: 'fqdn', + other_entity:'dnsrecord' }, - 'description' ] + 'krbprincipalname', + 'description', + 'l', + 'nshostlocation', + 'nshardwareplatform', + 'nsosversion' + ] }, { name:'enrollment', |