Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(v2): change description for blog post paginator #3029

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function BlogPostPaginator(props): JSX.Element {
<div className="pagination-nav__item">
{prevItem && (
<Link className="pagination-nav__link" to={prevItem.permalink}>
<div className="pagination-nav__sublabel">Previous Post</div>
<div className="pagination-nav__sublabel">Newer Post</div>
<div className="pagination-nav__label">
&laquo; {prevItem.title}
</div>
Expand All @@ -26,7 +26,7 @@ function BlogPostPaginator(props): JSX.Element {
<div className="pagination-nav__item pagination-nav__item--next">
{nextItem && (
<Link className="pagination-nav__link" to={nextItem.permalink}>
<div className="pagination-nav__sublabel">Next Post</div>
<div className="pagination-nav__sublabel">Older Post</div>
<div className="pagination-nav__label">
{nextItem.title} &raquo;
</div>
Expand Down