Minor bugfix: set type=button on the paginator overflow button

This commit is contained in:
Noah Petherbridge 2024-07-08 18:00:23 +00:00
parent 9b72a95ca4
commit 3203a487a5

View File

@ -27,7 +27,7 @@ See also: template_funcs.go for the SimplePager wrapper function.
{{if .IsOverflow}}
<div class="dropdown px-1">
<div class="dropdown-trigger">
<button class="button{{if .IsCurrent}} is-link{{end}}" aria-haspopup="true" aria-controls="{{$DropdownID}}" style="font-size: smaller">
<button type="button" class="button{{if .IsCurrent}} is-link{{end}}" aria-haspopup="true" aria-controls="{{$DropdownID}}" style="font-size: smaller">
{{.Page}} <i class="fas fa-angle-down ml-1" aria-hidden="true"></i>
</button>
</div>