summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--install/ui/widget.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/widget.js b/install/ui/widget.js
index b60b2a610..e30cacd7c 100644
--- a/install/ui/widget.js
+++ b/install/ui/widget.js
@@ -1680,12 +1680,12 @@ IPA.combobox_widget = function(spec) {
name: 'list',
size: that.list_size,
style: 'width: 100%',
- click: function(){
- that.close();
+ change: function() {
var value = $('option:selected', that.list).val();
that.input.val(value);
IPA.select_range(that.input, 0, 0);
+ that.close();
that.validate();
that.set_dirty(that.test_dirty());
}