Skip to content
This repository was archived by the owner on Nov 6, 2024. It is now read-only.

Commit c1dd89a

Browse files
authored
Fix lint (#304)
1 parent 71b89f3 commit c1dd89a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pagination/pagination.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class MzPaginationComponent extends HandlePropChanges implements OnInit {
6868
}
6969

7070
renderButtons() {
71-
const buttonsCount = Math.min(this.maxPageButtons, this.totalPages)
71+
const buttonsCount = Math.min(this.maxPageButtons, this.totalPages);
7272
const maxPosition = this.totalPages - buttonsCount;
7373
const halfButtons = Math.floor(buttonsCount / 2);
7474

0 commit comments

Comments
 (0)