mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-31 14:12:37 +08:00
[resumes][refactor] Update app UI (#434)
* [resumes][refactor] Update marketing page tabs * [resumes][feat] mobile responsive resume rows on browse * [resumes][fix] padding on pdf view in mobile * [resumes][chore] add uni years to labels Co-authored-by: Terence Ho <> Co-authored-by: peirong.wu <wupeirong294@gmail.com>
This commit is contained in:
@ -85,7 +85,7 @@ export default function Pagination({
|
||||
}
|
||||
|
||||
if (lastAddedPage < current - pagePadding - 1) {
|
||||
elements.push(<PaginationEllipsis />);
|
||||
elements.push(<PaginationEllipsis key="ellipse-1" />);
|
||||
}
|
||||
|
||||
for (let i = current - pagePadding; i <= current + pagePadding; i++) {
|
||||
@ -93,7 +93,7 @@ export default function Pagination({
|
||||
}
|
||||
|
||||
if (lastAddedPage < end - pagePadding - 1) {
|
||||
elements.push(<PaginationEllipsis />);
|
||||
elements.push(<PaginationEllipsis key="ellipse-2" />);
|
||||
}
|
||||
|
||||
for (let i = end - pagePadding; i <= end; i++) {
|
||||
|
Reference in New Issue
Block a user