diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2022-06-23 00:26:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 11:26:32 -0500 |
commit | fd97c4e0aed3fec6eed1c3b9c61d936d282ea055 (patch) | |
tree | 8dea1228663b5ce50649a2881d619a2c5123afe3 /templates/user/dashboard | |
parent | e9aa698cf0012888c9f7004bce85632f0917ab79 (diff) | |
download | gitea-fd97c4e0aed3fec6eed1c3b9c61d936d282ea055.tar.gz gitea-fd97c4e0aed3fec6eed1c3b9c61d936d282ea055.zip |
Use correct variable for issue count (#20085)
Diffstat (limited to 'templates/user/dashboard')
-rw-r--r-- | templates/user/dashboard/issues.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/dashboard/issues.tmpl b/templates/user/dashboard/issues.tmpl index bd7d54b670..9024d9ede6 100644 --- a/templates/user/dashboard/issues.tmpl +++ b/templates/user/dashboard/issues.tmpl @@ -61,11 +61,11 @@ <div class="ui compact tiny menu"> <a class="item{{if not .IsShowClosed}} active{{end}}" href="{{.Link}}?type={{$.ViewType}}&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state=open&q={{$.Keyword}}"> {{svg "octicon-issue-opened" 16 "mr-3"}} - {{JsPrettyNumber .ShownIssueStats.OpenCount}} {{.i18n.Tr "repo.issues.open_title"}} + {{JsPrettyNumber .IssueStats.OpenCount}} {{.i18n.Tr "repo.issues.open_title"}} </a> <a class="item{{if .IsShowClosed}} active{{end}}" href="{{.Link}}?type={{$.ViewType}}&repos=[{{range $.RepoIDs}}{{.}}%2C{{end}}]&sort={{$.SortType}}&state=closed&q={{$.Keyword}}"> {{svg "octicon-issue-closed" 16 "mr-3"}} - {{JsPrettyNumber .ShownIssueStats.ClosedCount}} {{.i18n.Tr "repo.issues.closed_title"}} + {{JsPrettyNumber .IssueStats.ClosedCount}} {{.i18n.Tr "repo.issues.closed_title"}} </a> </div> </div> |