Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-gabe49 committed Jan 19, 2022
1 parent a66c1b5 commit 63b2897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions mathesar_ui/src/component-library/pagination/Pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ ul.pagination {
}

button:focus {
border: 1.4px solid #6bc3ec;
color: #6bc3ec;
border: 1.4px solid #39a0f5;
color: #39a0f5;
}

.page {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
// Total number of pages.
export let pageCount = 0;
// ARIA Label for component
export let ariaLabel: string = "Pagination";
// ARIA Label for component
export let ariaLabel = 'Pagination';
$: pageCount = Math.ceil(total / pageSize);
$: pageInfo = calculatePages(currentPage, pageCount);
Expand Down

0 comments on commit 63b2897

Please # to comment.