summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-08-13 11:31:50 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-08-13 11:31:50 +0200
commit56f34b67fefe19d98dcdb0ea0597e338d20f3a87 (patch)
treec9c170c1f1981731db24bbf5f8c03ab292ffbbf5 /js
parent130a98f4df5726745978dfd3c143663a69b58661 (diff)
downloadbugzilla-56f34b67fefe19d98dcdb0ea0597e338d20f3a87.tar.gz
bugzilla-56f34b67fefe19d98dcdb0ea0597e338d20f3a87.tar.xz
Bug 583884: User autocomplete fills in empty values instead of the autocomplete value
r=pyrzak r=mkanat a=mkanat
Diffstat (limited to 'js')
-rw-r--r--js/field.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/js/field.js b/js/field.js
index 34f37e39e..a64369d33 100644
--- a/js/field.js
+++ b/js/field.js
@@ -690,8 +690,12 @@ YAHOO.bugzilla.userAutocomplete = {
this.dataSource.maxCacheEntries = 5;
this.dataSource.responseSchema = {
resultsList : "result.users",
- metaFields : { error: "error", jsonRpcId: "id"}
- };
+ metaFields : { error: "error", jsonRpcId: "id"},
+ fields : [
+ { key : "email" },
+ { key : "real_name"}
+ ]
+ };
},
init : function( field, container, multiple ) {
if( this.dataSource == null ){