diff options
author | Giteabot <teabot@gitea.io> | 2025-03-01 01:38:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-28 12:38:27 -0500 |
commit | 7ded86f5afe2715fb630c94b589e93b2c8a44cd8 (patch) | |
tree | e11860c6fca9d749efe32b4ec492b4fadcf84a3f | |
parent | 27a60fd91b4046b52f330719eafbdd1f2fbc319d (diff) | |
download | gitea-7ded86f5afe2715fb630c94b589e93b2c8a44cd8.tar.gz gitea-7ded86f5afe2715fb630c94b589e93b2c8a44cd8.zip |
Remove superflous tw-content-center (#33741) (#33743)
Backport #33741 by @silverwind
Co-authored-by: silverwind <me@silverwind.io>
-rw-r--r-- | templates/base/paginate.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base/paginate.tmpl b/templates/base/paginate.tmpl index 9a7a6322f7..253892c009 100644 --- a/templates/base/paginate.tmpl +++ b/templates/base/paginate.tmpl @@ -17,7 +17,7 @@ {{if eq .Num -1}} <a class="disabled item">...</a> {{else}} - <a class="{{if .IsCurrent}}active {{end}}item tw-content-center" {{if not .IsCurrent}}href="{{$paginationLink}}?page={{.Num}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>{{.Num}}</a> + <a class="{{if .IsCurrent}}active {{end}}item" {{if not .IsCurrent}}href="{{$paginationLink}}?page={{.Num}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}>{{.Num}}</a> {{end}} {{end}} <a class="{{if not .HasNext}}disabled{{end}} item navigation" {{if .HasNext}}href="{{$paginationLink}}?page={{.Next}}{{if $paginationParams}}&{{$paginationParams}}{{end}}"{{end}}> |