diff options
author | Unknwon <u@gogs.io> | 2017-02-17 22:17:27 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-02-17 22:17:27 -0500 |
commit | 266586e8667705822acd136e4e566b4d19a54d73 (patch) | |
tree | cf85016f234203384800293347ee7aa2372d65e1 /public/js | |
parent | b481927d5e89eacec1892af7611997b56bed9883 (diff) |
repo: assignee can be anyone who has read access (#3739)
Diffstat (limited to 'public/js')
-rw-r--r-- | public/js/gogs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js index 58fed2cc..b77b1104 100644 --- a/public/js/gogs.js +++ b/public/js/gogs.js @@ -1153,7 +1153,7 @@ function searchRepositories() { if (response.ok && response.data.length) { var html = ''; $.each(response.data, function (i, item) { - html += '<div class="item"><i class="icon octicon octicon-repo"></i> <span class="fullname">' + item.full_name + '</span></div>'; + html += '<div class="item"><i class="octicon octicon-repo"></i> <span class="fullname">' + item.full_name + '</span></div>'; }); $results.html(html); $this.find('.results .item').click(function () { |