Commit fc08c133 by Ellis Fan Committed by GitHub

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.
parent b397c58b
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment