Browse Source

#112 現在ページの表示を太く

feature/112
みてるぞ 6 hours ago
parent
commit
89513ba72d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frontend/src/components/common/Pagination.tsx

+ 1
- 1
frontend/src/components/common/Pagination.tsx View File

@@ -68,7 +68,7 @@ export default (({ page, totalPages, siblingCount = 4 }) => {
(p === '…')
? <span key={`dots-${ idx }`}>…</span>
: ((p === page)
? <span key={p} aria-current="page">{p}</span>
? <span key={p} className="font-bold" aria-current="page">{p}</span>
: <Link key={p} to={buildTo (p)}>{p}</Link>)))}

{(page < totalPages)


Loading…
Cancel
Save