mirror of
https://github.com/gogs/gogs.git
synced 2025-12-20 15:20:01 +01:00
repo: assignee can be anyone who has read access (#3739)
This commit is contained in:
@@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user