mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
removed event modifiers
This commit is contained in:
parent
c296ef271c
commit
577d39f735
1 changed files with 2 additions and 2 deletions
|
@ -84,7 +84,7 @@
|
|||
<button
|
||||
type="button"
|
||||
class={cx('--pagination__button', '--pagination__button--backward', backButtonDisabled && '--pagination__button--no-index')}
|
||||
on:click|capture={() => {
|
||||
on:click={() => {
|
||||
page--;
|
||||
}}
|
||||
aria-label={backwardText}
|
||||
|
@ -95,7 +95,7 @@
|
|||
type="button"
|
||||
class={cx('--pagination__button', '--pagination__button--forward', forwardButtonDisabled && '--pagination__button--no-index')}
|
||||
aria-label={forwardText}
|
||||
on:click|capture={() => {
|
||||
on:click={() => {
|
||||
page++;
|
||||
}}
|
||||
disabled={forwardButtonDisabled}>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue