diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2020-05-31 21:53:56 +0900 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2020-05-31 21:53:56 +0900 |
| commit | fb91ab4080ade2234d6ea21cd877d635d226b6c3 (patch) | |
| tree | 0caee66bde5d6565358b190ab57f259c353445c8 /src/client/components/notifications.vue | |
| parent | Refactor (diff) | |
| parent | fix(client): 全既読系ボタンのAPIの指定が間違っているのを... (diff) | |
| download | misskey-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.vue | 2 |
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> |