fix(front): color pagination primary in edit detail moderation
This commit is contained in:
parent
fdfda9ca3e
commit
5d65665d67
|
@ -59,6 +59,7 @@ watchEffect(() => fetchData())
|
||||||
<Button
|
<Button
|
||||||
v-if="nextPage || previousPage"
|
v-if="nextPage || previousPage"
|
||||||
:disabled="!previousPage"
|
:disabled="!previousPage"
|
||||||
|
primary
|
||||||
round
|
round
|
||||||
alignSelf="center"
|
alignSelf="center"
|
||||||
icon="bi-chevron-left"
|
icon="bi-chevron-left"
|
||||||
|
@ -78,6 +79,7 @@ watchEffect(() => fetchData())
|
||||||
v-if="nextPage || previousPage"
|
v-if="nextPage || previousPage"
|
||||||
:disabled="!nextPage"
|
:disabled="!nextPage"
|
||||||
alignSelf="center"
|
alignSelf="center"
|
||||||
|
primary
|
||||||
round
|
round
|
||||||
icon="bi-chevron-right"
|
icon="bi-chevron-right"
|
||||||
@click="fetchData(nextPage)"
|
@click="fetchData(nextPage)"
|
||||||
|
|
Loading…
Reference in New Issue