Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alikazemkhanloo committed Mar 10, 2020
1 parent fa3ef72 commit 2641e12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/ra-ui-materialui/src/list/PaginationActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ function PaginationActions(props) {
className="previous-page"
>
{theme.direction === 'rtl' ? (
<ChevronLeft />
) : (
<ChevronRight />
) : (
<ChevronLeft />
)}
{translate('ra.navigation.prev')}
</Button>
Expand All @@ -146,9 +146,9 @@ function PaginationActions(props) {
>
{translate('ra.navigation.next')}
{theme.direction === 'rtl' ? (
<ChevronRight />
) : (
<ChevronLeft />
) : (
<ChevronRight />
)}
</Button>
)}
Expand Down

0 comments on commit 2641e12

Please sign in to comment.