fix(web/default): update pagination button labels in ModelCardGrid (#4675)

Change 'Previous' to 'Previous page' and 'Next' to 'Next page'
for improved clarity in the ModelCardGrid component.
This commit is contained in:
Ellis Fan 2026-05-19 16:14:37 +08:00 committed by GitHub
parent b397c58bab
commit fc08c133e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -103,7 +103,7 @@ export function ModelCardGrid(props: ModelCardGridProps) {
className='gap-1.5'
>
<ChevronLeft className='size-4' />
{t('Previous')}
{t('Previous page')}
</Button>
<Button
type='button'
@ -115,7 +115,7 @@ export function ModelCardGrid(props: ModelCardGridProps) {
disabled={currentPage >= totalPages}
className='gap-1.5'
>
{t('Next')}
{t('Next page')}
<ChevronRight className='size-4' />
</Button>
</div>