Skip to content

Commit

Permalink
fix(paginator): add type button to next / prev buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
mostwired authored and kara committed Aug 22, 2017
1 parent 921432a commit 5bd655b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/paginator/paginator.html
Expand Up @@ -20,7 +20,7 @@
{{_intl.getRangeLabel(pageIndex, pageSize, length)}}
</div>

<button md-icon-button
<button md-icon-button type="button"
class="mat-paginator-navigation-previous"
(click)="previousPage()"
[attr.aria-label]="_intl.previousPageLabel"
Expand All @@ -29,7 +29,7 @@
[disabled]="!hasPreviousPage()">
<div class="mat-paginator-increment"></div>
</button>
<button md-icon-button
<button md-icon-button type="button"
class="mat-paginator-navigation-next"
(click)="nextPage()"
[attr.aria-label]="_intl.nextPageLabel"
Expand Down

0 comments on commit 5bd655b

Please sign in to comment.