diff options
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index db6c665ecf..57258b7175 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -2959,13 +2959,13 @@ function initVueComponents() { if (repo.fork) { return 'octicon-repo-forked'; } else if (repo.mirror) { - return 'octicon-repo-clone'; + return 'octicon-mirror'; } else if (repo.template) { - return `octicon-repo-template${repo.private ? '-private' : ''}`; + return `octicon-repo-template`; } else if (repo.private) { return 'octicon-lock'; } else if (repo.internal) { - return 'octicon-internal-repo'; + return 'octicon-repo'; } return 'octicon-repo'; } |