diff options
author | silverwind <me@silverwind.io> | 2022-08-31 17:58:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-31 23:58:54 +0800 |
commit | 647b2649b1600107c5fec3505db691f78b2c1e2a (patch) | |
tree | b3bcaf968426f6ad1ba4fde3e41f3ca3224ec47e /templates/repo/editor | |
parent | c80ca94ab1de8ea3b13c1087cd7140165a11ceb7 (diff) | |
download | gitea-647b2649b1600107c5fec3505db691f78b2c1e2a.tar.gz gitea-647b2649b1600107c5fec3505db691f78b2c1e2a.zip |
Make sure fmt catches all templates (#20979)
* Make sure fmt catches all templates
Make's `wildcard` is not recursive so it missed many template files, fix
that by using `find`.
* Update Makefile
Diffstat (limited to 'templates/repo/editor')
-rw-r--r-- | templates/repo/editor/edit.tmpl | 4 | ||||
-rw-r--r-- | templates/repo/editor/upload.tmpl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/repo/editor/edit.tmpl b/templates/repo/editor/edit.tmpl index 77a6bf15e1..ebe56ec477 100644 --- a/templates/repo/editor/edit.tmpl +++ b/templates/repo/editor/edit.tmpl @@ -11,8 +11,8 @@ <div class="fitted item treepath"> <div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}"> <a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a> - {{ $n := len .TreeNames}} - {{ $l := Subtract $n 1}} + {{$n := len .TreeNames}} + {{$l := Subtract $n 1}} {{range $i, $v := .TreeNames}} <div class="divider"> / </div> {{if eq $i $l}} diff --git a/templates/repo/editor/upload.tmpl b/templates/repo/editor/upload.tmpl index d388f1ef65..f8496d5911 100644 --- a/templates/repo/editor/upload.tmpl +++ b/templates/repo/editor/upload.tmpl @@ -9,8 +9,8 @@ <div class="item fitted treepath"> <div class="ui breadcrumb field {{if .Err_TreePath}}error{{end}}"> <a class="section" href="{{$.BranchLink}}">{{.Repository.Name}}</a> - {{ $n := len .TreeNames}} - {{ $l := Subtract $n 1}} + {{$n := len .TreeNames}} + {{$l := Subtract $n 1}} {{range $i, $v := .TreeNames}} <div class="divider"> / </div> {{if eq $i $l}} |