mirror of https://github.com/apache/cloudstack.git
- Limit the new domain search to 20 items.
This commit is contained in:
parent
16e9e4ae51
commit
d764ee92e1
|
|
@ -73,7 +73,7 @@ function applyAutoCompleteToDomainField($field) {
|
|||
$field.autocomplete({
|
||||
source: function(request, response) {
|
||||
$.ajax({
|
||||
data: "command=listDomains&path=" + encodeURIComponent(request.term) +"&response=json&pagesize=20",
|
||||
data: "command=listDomains&path=" + encodeURIComponent(request.term) +"&response=json&pagesize=10",
|
||||
dataType: "json",
|
||||
async: false,
|
||||
success: function(json) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue