diff options
Diffstat (limited to 'packages/client/src/components/MkFollowButton.vue')
| -rw-r--r-- | packages/client/src/components/MkFollowButton.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/MkFollowButton.vue b/packages/client/src/components/MkFollowButton.vue index 433386f443..f76b84bc1d 100644 --- a/packages/client/src/components/MkFollowButton.vue +++ b/packages/client/src/components/MkFollowButton.vue @@ -11,7 +11,7 @@ </template> <template v-else-if="hasPendingFollowRequestFromYou && !user.isLocked"> <!-- つまりリモートフォローの場合。 --> - <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true"/> + <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true" :colored="false"/> </template> <template v-else-if="isFollowing"> <span v-if="full">{{ i18n.ts.unfollow }}</span><i class="ti ti-minus"></i> @@ -24,7 +24,7 @@ </template> </template> <template v-else> - <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true"/> + <span v-if="full">{{ i18n.ts.processing }}</span><MkLoading :em="true" :colored="false"/> </template> </button> </template> |