diff options
Diffstat (limited to 'public')
-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 () { |