carbon-design-system / carbon-components-svelte

Svelte implementation of the Carbon Design System
https://svelte.carbondesignsystem.com
Apache License 2.0
2.71k stars 261 forks source link

fix(pagination-nav): set `button type="button"` to prevent form submission #1846

Closed metonym closed 12 months ago

metonym commented 12 months ago

When PaginationNav is used inside a form, the form will be submitted when clicking a page button.

This is because the button lacks an explicit type attribute. If contained within a form, the default type is "submit."

<form>
  <PaginationNav />
</form>
metonym commented 12 months ago

Fixed in v0.82.1