diff options
author | jaqra <48099350+jaqra@users.noreply.github.com> | 2019-10-04 10:18:46 +0300 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-10-04 09:18:46 +0200 |
commit | 1a2d7207ea38a2c5f32b0fa8e7778c747a5631c8 (patch) | |
tree | f057dbc8b7c6ebf38fb3ba43643874639d01fb19 /templates | |
parent | 6ea77523bbda75255e04bb5befafe24f5279ab5e (diff) | |
download | gitea-1a2d7207ea38a2c5f32b0fa8e7778c747a5631c8.tar.gz gitea-1a2d7207ea38a2c5f32b0fa8e7778c747a5631c8.zip |
Make 100% width issues page left menu and add reponame as title attribute (#8359)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/user/dashboard/issues.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index 83e630e97e..ac5f10a599 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -25,7 +25,7 @@ {{end}} <div class="ui divider"></div> {{range .Repos}} - <a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}"> + <a class="{{if eq $.RepoID .ID}}ui basic blue button{{end}} repo name item" href="{{$.Link}}?type={{$.ViewType}}{{if not (eq $.RepoID .ID)}}&repo={{.ID}}{{end}}&sort={{$.SortType}}&state={{$.State}}" title="{{.FullName}}"> <span class="text truncate">{{.FullName}}</span> <div class="floating ui {{if $.IsShowClosed}}red{{else}}green{{end}} label">{{index $.Counts .ID}}</div> </a> |