diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-04-23 14:39:55 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-05-06 16:22:29 +0200 |
commit | 3599357bcc74afe47e50ef1672021cc7a83a952a (patch) | |
tree | eadd5edfa0971b4a155585b7e0e62c49ba104692 | |
parent | c151e01e7954b0181c97a1b495e2237e00198492 (diff) | |
download | freeipa-3599357bcc74afe47e50ef1672021cc7a83a952a.tar.gz freeipa-3599357bcc74afe47e50ef1672021cc7a83a952a.tar.xz freeipa-3599357bcc74afe47e50ef1672021cc7a83a952a.zip |
Fix rule table add/delete button enablement
https://fedorahosted.org/freeipa/ticket/3235
-rw-r--r-- | install/ui/src/freeipa/rule.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/ui/src/freeipa/rule.js b/install/ui/src/freeipa/rule.js index 11ceab934..959aec462 100644 --- a/install/ui/src/freeipa/rule.js +++ b/install/ui/src/freeipa/rule.js @@ -49,6 +49,7 @@ IPA.rule_details_widget = function(spec) { that.widgets.add_widget(that.enable_radio); that.enable_radio.value_changed.attach(that.on_enable_radio_changed); + that.enable_radio.updated.attach(that.on_enable_radio_changed); }; that.on_enable_radio_changed = function() { |