mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 04:05:42 +01:00
Hide collapse icon in diff with no lines (#21094)
Sometimes (e.g. renaming a file) nothing of the content is changed. In this case, it makes no sense to show the collapse icon in a diff.
This commit is contained in:
parent
85016af1fe
commit
be93e48ccb
1 changed files with 9 additions and 7 deletions
|
@ -79,13 +79,15 @@
|
||||||
<div class="diff-file-box diff-box file-content {{TabSizeClass $.Editorconfig $file.Name}} mt-3" id="diff-{{$file.NameHash}}" data-old-filename="{{$file.OldName}}" data-new-filename="{{$file.Name}}" {{if $file.ShouldBeHidden}}data-folded="true"{{end}}>
|
<div class="diff-file-box diff-box file-content {{TabSizeClass $.Editorconfig $file.Name}} mt-3" id="diff-{{$file.NameHash}}" data-old-filename="{{$file.OldName}}" data-new-filename="{{$file.Name}}" {{if $file.ShouldBeHidden}}data-folded="true"{{end}}>
|
||||||
<h4 class="diff-file-header sticky-2nd-row ui top attached normal header df ac sb">
|
<h4 class="diff-file-header sticky-2nd-row ui top attached normal header df ac sb">
|
||||||
<div class="df ac">
|
<div class="df ac">
|
||||||
<a role="button" class="fold-file muted mr-2">
|
{{if or (gt $file.Addition 0) (gt $file.Deletion 0) $file.IsBin}}
|
||||||
{{if $file.ShouldBeHidden}}
|
<a role="button" class="fold-file muted mr-2">
|
||||||
{{svg "octicon-chevron-right" 18}}
|
{{if $file.ShouldBeHidden}}
|
||||||
{{else}}
|
{{svg "octicon-chevron-right" 18}}
|
||||||
{{svg "octicon-chevron-down" 18}}
|
{{else}}
|
||||||
{{end}}
|
{{svg "octicon-chevron-down" 18}}
|
||||||
</a>
|
{{end}}
|
||||||
|
</a>
|
||||||
|
{{end}}
|
||||||
<div class="bold df ac">
|
<div class="bold df ac">
|
||||||
{{if $file.IsBin}}
|
{{if $file.IsBin}}
|
||||||
<span class="ml-1 mr-3">
|
<span class="ml-1 mr-3">
|
||||||
|
|
Loading…
Reference in a new issue