summaryrefslogtreecommitdiff
path: root/src/client/components/ui/pagination.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components/ui/pagination.vue')
-rw-r--r--src/client/components/ui/pagination.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/ui/pagination.vue b/src/client/components/ui/pagination.vue
index e888b7420c..79d322bbc4 100644
--- a/src/client/components/ui/pagination.vue
+++ b/src/client/components/ui/pagination.vue
@@ -4,8 +4,8 @@
<div class="empty" v-if="empty" key="_empty_">
<slot name="empty"></slot>
</div>
- <div class="more" v-if="more" key="_more_">
- <mk-button class="button" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" @click="fetchMore()" primary>
+ <div class="more" v-show="more" key="_more_">
+ <mk-button class="button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary>
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
<template v-if="moreFetching"><mk-loading inline/></template>
</mk-button>