Skip to content

Commit

Permalink
fix(web): pagination not show
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 authored Oct 4, 2024
1 parent f458613 commit 4be881b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/web/app/components/Resources/pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const Pagination = (props: PaginationProps) => {
<span>{formatChinaTime(timestamp)}</span>
</div>
<div className="flex-auto"></div>
{page !== 1 && !complete && (
{(page !== 1 || !complete) && (
<div className="flex lt-md:(mt-4 justify-center) items-center gap-2 text-base-500">
<PageItem
page={page - 1}
Expand Down

0 comments on commit 4be881b

Please sign in to comment.