diff --git a/public/js/index.js b/public/js/index.js index b7b18187a..2cc779098 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1089,7 +1089,7 @@ function searchUsers() { if (response.ok && response.data.length) { var html = ''; $.each(response.data, function (i, item) { - html += '
' + item.username + ''; + html += '
' + item.login + ''; if (notEmpty(item.full_name)) { html += ' (' + item.full_name + ')'; }