From 12dbdaac76b0eaa625d4e656df725bcd63218420 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 27 May 2017 13:40:54 -0300 Subject: [PATCH] Fix private repo icon --- public/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/index.js b/public/js/index.js index fa1184ed5b..80d9486fd1 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -1698,7 +1698,7 @@ function initDashboardSearch() { } else if (repo.mirror) { return 'octicon octicon-repo-clone'; } else if (repo.private) { - return 'octicon octicon-repo-forked'; + return 'octicon octicon-lock'; } else { return 'octicon octicon-repo'; }