We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc2a53 commit d61647cCopy full SHA for d61647c
src/components/PickerHeader.vue
@@ -7,7 +7,7 @@
7
data-test-previous-button
8
:disabled="isPreviousDisabled"
9
type="button"
10
- @click="$emit('page-change', previousPage)"
+ @click.stop="$emit('page-change', previousPage)"
11
@keydown.down.prevent="focusTabbableCell"
12
@keydown.up.prevent="$emit('focus-input')"
13
@keydown.left.prevent="arrowLeftPrev"
@@ -25,7 +25,7 @@
25
data-test-next-button
26
:disabled="isNextDisabled"
27
28
- @click="$emit('page-change', nextPage)"
+ @click.stop="$emit('page-change', nextPage)"
29
30
31
@keydown.left.prevent="arrowLeftNext"
0 commit comments