From cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 27 Apr 2011 12:17:13 -0500 Subject: Entitlement status. A new facet has been added to show entitlement status and download the registration certificate. --- install/ui/dns.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/ui/dns.js') diff --git a/install/ui/dns.js b/install/ui/dns.js index ff429452..55feaa03 100644 --- a/install/ui/dns.js +++ b/install/ui/dns.js @@ -33,6 +33,7 @@ IPA.entity_factories.dnszone = function() { return IPA.entity_builder(). entity('dnszone'). search_facet({ + title: IPA.metadata.objects.dnszone.label, columns:['idnsname'] }). details_facet({ @@ -469,8 +470,7 @@ IPA.records_facet = function(spec) { function on_error(xhr, text_status, error_thrown) { var summary = $('span[name=summary]', that.table.tfoot).empty(); - summary.append('

Error: '+error_thrown.name+'

'); - summary.append('

'+error_thrown.message+'

'); + summary.append(error_thrown.name+': '+error_thrown.message); } var options = {}; -- cgit