summaryrefslogtreecommitdiffstats
path: root/install/static/hbacsvc.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/hbacsvc.js')
-rwxr-xr-xinstall/static/hbacsvc.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/static/hbacsvc.js b/install/static/hbacsvc.js
index a0ef75d14..bf3c2ad71 100755
--- a/install/static/hbacsvc.js
+++ b/install/static/hbacsvc.js
@@ -82,8 +82,8 @@ function ipa_hbacsvc_search_facet(spec) {
that.init = function() {
- that.create_column({name:'cn', label:'Service', primary_key: true});
- that.create_column({name:'description', label:'Description'});
+ that.create_column({name:'cn', primary_key: true});
+ that.create_column({name:'description'});
that.search_facet_init();
};
@@ -140,8 +140,8 @@ function ipa_hbacsvc_details_facet(spec) {
});
that.add_section(section);
- section.create_field({ 'name': 'cn', 'label': 'Name' });
- section.create_field({ 'name': 'description', 'label': 'Description' });
+ section.create_field({'name': 'cn'});
+ section.create_field({'name': 'description'});
that.superior_init();
};