Skip to content

Commit

Permalink
Fix #4953
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed May 21, 2019
1 parent c8107ff commit 09da292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app/common/views/components/user-list.vue
Expand Up @@ -21,7 +21,7 @@
<mk-follow-button class="follow-button" v-if="$store.getters.isSignedIn && user.id != $store.state.i.id" :user="user" mini/>
</div>
</div>
<button class="more" :class="{ fetching: moreFetching }" v-if="more" @click="fetchMoreUsers()" :disabled="moreFetching">
<button class="more" :class="{ fetching: moreFetching }" v-if="more" @click="fetchMore()" :disabled="moreFetching">
<template v-if="moreFetching"><fa icon="spinner" pulse fixed-width/></template>{{ moreFetching ? $t('@.loading') : $t('@.load-more') }}
</button>
</div>
Expand Down

0 comments on commit 09da292

Please sign in to comment.