File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ export const Pagination = component$<PaginationProps>((props) => {
36
36
< nav aria-label = "pagination" data-testid = "pagination" class = { _class } >
37
37
{ isPrevButtonVisible ( ) && (
38
38
< button
39
- type = "button"
40
39
aria-label = { 'prevAriaLabel' }
41
40
disabled = { disabled }
42
41
onClick$ = { ( ) => {
@@ -59,7 +58,6 @@ export const Pagination = component$<PaginationProps>((props) => {
59
58
) : (
60
59
< button
61
60
class = { [ selectedPage === item ? selectedClass : defaultClass ] }
62
- type = "button"
63
61
aria-label = { `Page ${ item } of ${ totalPages } ` }
64
62
aria-current = { selectedPage === item }
65
63
disabled = { true }
@@ -77,7 +75,6 @@ export const Pagination = component$<PaginationProps>((props) => {
77
75
{ /* Next Button */ }
78
76
{ isNextButtonVisible ( ) && (
79
77
< button
80
- type = "button"
81
78
aria-label = { 'nextAriaLabel' }
82
79
disabled = { disabled }
83
80
onClick$ = { ( ) => {
You can’t perform that action at this time.
0 commit comments