diff options
author | 6543 <6543@obermui.de> | 2020-06-16 17:27:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-16 11:27:20 -0400 |
commit | f399cd326ba06d74ab4235d2d14e50f6940aed69 (patch) | |
tree | 3eff86dcc05f01b581816646cbf628822651199b /templates/repo/sub_menu.tmpl | |
parent | 6a4de37f7e790716c35f1dc4a0aeacfe4b4a1415 (diff) | |
download | gitea-f399cd326ba06d74ab4235d2d14e50f6940aed69.tar.gz gitea-f399cd326ba06d74ab4235d2d14e50f6940aed69.zip |
UI: Fix wrong closing tag (#11910)
* rm wrong closing tag
* Update templates/repo/sub_menu.tmpl
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
Co-authored-by: John Olheiser <john.olheiser@gmail.com>
Diffstat (limited to 'templates/repo/sub_menu.tmpl')
-rw-r--r-- | templates/repo/sub_menu.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/sub_menu.tmpl b/templates/repo/sub_menu.tmpl index c8e447f9b5..00bb4a54f8 100644 --- a/templates/repo/sub_menu.tmpl +++ b/templates/repo/sub_menu.tmpl @@ -11,7 +11,7 @@ <a class="ui" href="{{.RepoLink}}/branches/">{{svg "octicon-git-branch" 16}} <b>{{.BranchesCount}}</b> {{.i18n.Tr (TrN .i18n.Lang .BranchesCount "repo.branch" "repo.branches") }}</a> </div> <div class="item"> - <span class="ui">{{svg "octicon-database" 16}} <b>{{SizeFmt .Repository.Size}}</b></a> + <span class="ui">{{svg "octicon-database" 16}} <b>{{SizeFmt .Repository.Size}}</b></span> </div> {{end}} </div> |