Skip to content

Commit

Permalink
Merge pull request #2612 from sszakony/dev
Browse files Browse the repository at this point in the history
Committing format changes to the user impersonation dropdown.
  • Loading branch information
hexylena committed Jul 13, 2016
2 parents f3e9736 + 03b59aa commit 7bbe0a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion templates/admin/impersonate.mako
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* queries (term, below) */
$("#email_select").select2({
placeholder: "Select a user",
width: "33%",
ajax: {
url: "${h.url_for(controller="/api/users", action="index")}",
dataType: 'json',
Expand All @@ -44,7 +45,7 @@
$.each(data, function(index, item){
results.push({
id: item.email,
text: item.email
text: item.username + " : " + item.email
});
});
return {
Expand Down

0 comments on commit 7bbe0a2

Please sign in to comment.