diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2017-05-27 13:40:54 -0300 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2017-05-27 13:40:54 -0300 |
commit | 12dbdaac76b0eaa625d4e656df725bcd63218420 (patch) | |
tree | f71e0ec55f9167a86673b73efa672d08712f393a /public | |
parent | 8906b2891ba0dc1aba2acbaee5e0051043894b2f (diff) | |
download | gitea-12dbdaac76b0eaa625d4e656df725bcd63218420.tar.gz gitea-12dbdaac76b0eaa625d4e656df725bcd63218420.zip |
Fix private repo icon
Diffstat (limited to 'public')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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'; } |