diff options
author | Unknwon <u@gogs.io> | 2016-01-31 19:41:21 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-01-31 19:41:21 -0500 |
commit | 5d192c2ebf0703fa0e7a5af7adbcaaec0d3b7dc9 (patch) | |
tree | 30e5b78368694eb5542b06ee03cbd8b58e63a869 /templates | |
parent | 4848620594ef96939887cba5aa278b1dc9321efb (diff) | |
parent | 29c3e9f428cb9ae26acaa360b856b2f81da82d99 (diff) | |
download | gitea-5d192c2ebf0703fa0e7a5af7adbcaaec0d3b7dc9.tar.gz gitea-5d192c2ebf0703fa0e7a5af7adbcaaec0d3b7dc9.zip |
Merge pull request #2533 from fnkr/icon-fork-private-collision
Use icon repo-forked instead of repo-lock for private, forked repos
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/dashboard/dashboard.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index 667a0e6b64..eb4d7542ca 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -29,7 +29,7 @@ {{range .Repos}} <li {{if .IsPrivate}}class="private"{{end}}> <a href="{{AppSubUrl}}/{{$.ContextUser.Name}}/{{.Name}}"> - <i class="icon octicon octicon-{{if .IsPrivate}}lock{{else if .IsFork}}repo-forked{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> + <i class="icon octicon octicon-{{if .IsFork}}repo-forked{{else if .IsPrivate}}lock{{else if .IsMirror}}repo-clone{{else}}repo{{end}}"></i> <strong class="text truncate item-name">{{.Name}}</strong> <span class="ui right text light grey"> <i class="octicon octicon-star"></i>{{.NumStars}} |