kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
fix(ui): in pagination component, do not hide buttons if there are 2 pages; fix spacing error with < 6 pages
rodzic
aee45bf5c5
commit
c30f42f50c
|
|
@ -77,11 +77,8 @@ watch(page, (_) => {
|
|||
})
|
||||
</script>
|
||||
|
||||
|
||||
<!-- REDESIGN, without custom CSS -->
|
||||
|
||||
|
||||
|
||||
<template>
|
||||
<nav
|
||||
ref="pagination"
|
||||
|
|
@ -117,9 +114,8 @@ watch(page, (_) => {
|
|||
v-for="(i, index) in (renderPages)"
|
||||
:key="i"
|
||||
>
|
||||
<li>
|
||||
<li v-if="i <= pages && i > 0 && pages > 1">
|
||||
<Button
|
||||
v-if="i <= pages && i > 0 && pages > 2"
|
||||
square-small
|
||||
:aria-label="page !== i ? t('vui.aria.pagination.goToPage', i) : t('vui.aria.pagination.currentPage', page)"
|
||||
:secondary="page !== i"
|
||||
|
|
|
|||
Ładowanie…
Reference in New Issue