From 31f156241959df107e361c2a8a81adc1cf6eb881 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 2 Apr 2012 15:00:26 +0200 Subject: Fixed: permission attrs table didn't update its available options on load It could lead to state where attributes from other object type were displayed instead of the correct ones. https://fedorahosted.org/freeipa/ticket/2590 --- install/ui/aci.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'install') diff --git a/install/ui/aci.js b/install/ui/aci.js index ba4a22bf1..d65d3f884 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -759,6 +759,13 @@ IPA.permission_target_policy = function (widget_name) { attribute_field.reset(); }; + that.update_attrs = function() { + + var type_select = that.permission_target.widgets.get_widget('type'); + var type = type_select.save()[0]; + that.set_attrs_type(type); + }; + that.post_create = function() { that.select_target(that.permission_target.targets[0]); }; @@ -853,7 +860,10 @@ IPA.permission_target_policy = function (widget_name) { { name: 'attrs' } - ] + ], + action: function() { + that.update_attrs(); + } } }; -- cgit