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:
parent
b397c58bab
commit
fc08c133e2
@ -103,7 +103,7 @@ export function ModelCardGrid(props: ModelCardGridProps) {
|
|||||||
className='gap-1.5'
|
className='gap-1.5'
|
||||||
>
|
>
|
||||||
<ChevronLeft className='size-4' />
|
<ChevronLeft className='size-4' />
|
||||||
{t('Previous')}
|
{t('Previous page')}
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
type='button'
|
type='button'
|
||||||
@ -115,7 +115,7 @@ export function ModelCardGrid(props: ModelCardGridProps) {
|
|||||||
disabled={currentPage >= totalPages}
|
disabled={currentPage >= totalPages}
|
||||||
className='gap-1.5'
|
className='gap-1.5'
|
||||||
>
|
>
|
||||||
{t('Next')}
|
{t('Next page')}
|
||||||
<ChevronRight className='size-4' />
|
<ChevronRight className='size-4' />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user