Closed metonym closed 12 months ago
When PaginationNav is used inside a form, the form will be submitted when clicking a page button.
PaginationNav
form
This is because the button lacks an explicit type attribute. If contained within a form, the default type is "submit."
button
type
<form> <PaginationNav /> </form>
Fixed in v0.82.1
When
PaginationNav
is used inside aform
, the form will be submitted when clicking a page button.This is because the
button
lacks an explicittype
attribute. If contained within a form, the default type is "submit."