summaryrefslogtreecommitdiff
path: root/src/client/components/notifications.vue
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2020-05-31 21:53:56 +0900
committertamaina <tamaina@hotmail.co.jp>2020-05-31 21:53:56 +0900
commitfb91ab4080ade2234d6ea21cd877d635d226b6c3 (patch)
tree0caee66bde5d6565358b190ab57f259c353445c8 /src/client/components/notifications.vue
parentRefactor (diff)
parentfix(client): 全既読系ボタンのAPIの指定が間違っているのを... (diff)
downloadmisskey-fb91ab4080ade2234d6ea21cd877d635d226b6c3.tar.gz
misskey-fb91ab4080ade2234d6ea21cd877d635d226b6c3.tar.bz2
misskey-fb91ab4080ade2234d6ea21cd877d635d226b6c3.zip
Merge branch 'develop' into notification-visibility-read-2
Diffstat (limited to 'src/client/components/notifications.vue')
-rw-r--r--src/client/components/notifications.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/notifications.vue b/src/client/components/notifications.vue
index 9dcb4eb109..5c5b5fb810 100644
--- a/src/client/components/notifications.vue
+++ b/src/client/components/notifications.vue
@@ -5,7 +5,7 @@
<x-notification v-else :notification="notification" :with-time="true" :full="true" class="_panel notification" :key="notification.id"/>
</x-list>
- <button class="_panel _button" v-if="more" @click="fetchMore" :disabled="moreFetching">
+ <button class="_panel _button" ref="loadMore" v-show="more" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }">
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
<template v-if="moreFetching"><mk-loading inline/></template>
</button>