diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-08-30 12:33:03 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-08-31 16:29:55 +0000 |
commit | ebb0b386a36948b0f78f237995190ceb64c73325 (patch) | |
tree | 65dd6d02855fdcdce75edcaa9a3c5c7bbe009090 /install/ui/host.js | |
parent | b7121a8cbd6b7814f0a5666d27de7b209d095451 (diff) | |
download | freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.tar.gz freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.tar.xz freeipa-ebb0b386a36948b0f78f237995190ceb64c73325.zip |
Fixed problem with combobox.
The entity select widget has been modified to handle timing issue
in both dialog box and details page.
Ticket #1736
Diffstat (limited to 'install/ui/host.js')
-rw-r--r-- | install/ui/host.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/host.js b/install/ui/host.js index 019d3f40d..bcff252dd 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -359,11 +359,11 @@ IPA.dnszone_select_widget = function(spec) { var that = IPA.entity_select_widget(spec); - that.create_search_command = function() { + that.create_search_command = function(filter) { return IPA.command({ entity: that.other_entity, method: 'find', - args: [that.filter.val()], + args: [filter], options: { forward_only: true } |