summaryrefslogtreecommitdiffstats
path: root/install/ui/details.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/details.js')
-rw-r--r--install/ui/details.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/details.js b/install/ui/details.js
index a62b97fbd..4af837e8e 100644
--- a/install/ui/details.js
+++ b/install/ui/details.js
@@ -336,7 +336,7 @@ IPA.details_facet = function(spec) {
that.facet_create_header(container);
- that.pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
+ that.pkey = $.bbq.getState(that.entity_name+'-pkey');
var label = IPA.metadata.objects[that.entity_name].label;
var title = that.title;
@@ -462,7 +462,7 @@ IPA.details_facet = function(spec) {
that.show = function() {
that.facet_show();
- that.pkey = $.bbq.getState(that.entity_name+'-pkey', true) || '';
+ that.pkey = $.bbq.getState(that.entity_name+'-pkey');
that.entity.header.set_pkey(that.pkey);
if (that.entity.facets.length == 1) {
@@ -489,7 +489,7 @@ IPA.details_facet = function(spec) {
};
function new_key(){
- var pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
+ var pkey = $.bbq.getState(that.entity_name+'-pkey');
return pkey != that.pkey;
}
that.new_key = new_key;
@@ -608,7 +608,7 @@ IPA.details_facet = function(spec) {
that.refresh = function() {
- that.pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
+ that.pkey = $.bbq.getState(that.entity_name+'-pkey');
var command = IPA.command({
entity: that.entity_name,