fix collaboration js bug
This commit is contained in:
parent
0dfb5560cd
commit
ad71775ae8
1 changed files with 1 additions and 1 deletions
|
@ -597,7 +597,7 @@ function initRepoSetting() {
|
||||||
url: '/api/v1/users/search?q=' + $this.val(),
|
url: '/api/v1/users/search?q=' + $this.val(),
|
||||||
dataType: "json",
|
dataType: "json",
|
||||||
success: function (json) {
|
success: function (json) {
|
||||||
if (json.ok && json.data) {
|
if (json.ok && json.data.length) {
|
||||||
var html = '';
|
var html = '';
|
||||||
$.each(json.data, function (i, item) {
|
$.each(json.data, function (i, item) {
|
||||||
html += '<li><img src="' + item.avatar + '">' + item.username + '</li>';
|
html += '<li><img src="' + item.avatar + '">' + item.username + '</li>';
|
||||||
|
|
Reference in a new issue