From 266586e8667705822acd136e4e566b4d19a54d73 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Fri, 17 Feb 2017 22:17:27 -0500 Subject: repo: assignee can be anyone who has read access (#3739) --- public/js/gogs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public/js') 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 += '
' + item.full_name + '
'; + html += '
' + item.full_name + '
'; }); $results.html(html); $this.find('.results .item').click(function () { -- cgit v1.2.3