diff options
author | Albert <w.albert221@gmail.com> | 2017-09-10 22:21:26 +0200 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2017-09-10 22:21:26 +0200 |
commit | 250f1236dc2455d5b5969f4bdc5ec0ab06ca81c0 (patch) | |
tree | d9e9219644affcf5fbfa97aa4b7fd7587cbf2948 /templates/repo | |
parent | fd85e25f5f48823c4e65f3bd23662fd26d1398b3 (diff) | |
download | gitea-250f1236dc2455d5b5969f4bdc5ec0ab06ca81c0.tar.gz gitea-250f1236dc2455d5b5969f4bdc5ec0ab06ca81c0.zip |
* Fix fileview rendering bug #2470 (#2477)
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/diff/box.tmpl | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/repo/diff/box.tmpl b/templates/repo/diff/box.tmpl index 40675d75b8..5495b110b7 100644 --- a/templates/repo/diff/box.tmpl +++ b/templates/repo/diff/box.tmpl @@ -54,7 +54,7 @@ {{else}} <div class="diff-file-box diff-box file-content {{TabSizeClass $.Editorconfig $file.Name}}" id="diff-{{.Index}}"> <h4 class="ui top attached normal header"> - <div class="diff-counter count ui left"> + <div class="diff-counter count"> {{if $file.IsBin}} {{$.i18n.Tr "repo.diff.bin"}} {{else if not $file.IsRenamed}} @@ -68,13 +68,11 @@ </div> <span class="file">{{if $file.IsRenamed}}{{$file.OldName}} → {{end}}{{$file.Name}}{{if .IsLFSFile}} ({{$.i18n.Tr "repo.stored_lfs"}}){{end}}</span> {{if not $file.IsSubmodule}} - <div class="ui right"> - {{if $file.IsDeleted}} - <a class="ui basic grey tiny button" rel="nofollow" href="{{EscapePound $.BeforeSourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> - {{else}} - <a class="ui basic grey tiny button" rel="nofollow" href="{{EscapePound $.SourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> - {{end}} - </div> + {{if $file.IsDeleted}} + <a class="ui basic grey tiny button" rel="nofollow" href="{{EscapePound $.BeforeSourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> + {{else}} + <a class="ui basic grey tiny button" rel="nofollow" href="{{EscapePound $.SourcePath}}/{{EscapePound .Name}}">{{$.i18n.Tr "repo.diff.view_file"}}</a> + {{end}} {{end}} </h4> <div class="ui attached table segment"> |