summaryrefslogtreecommitdiff
path: root/src/client/app/desktop
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-02 16:13:32 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-02 16:13:32 +0900
commit897f7a031d624d8ca37b8efcab573d002c80dbe8 (patch)
tree217fa4ae7600979d6b504d0969e5fa6f636551dd /src/client/app/desktop
parentwip (diff)
downloadmisskey-897f7a031d624d8ca37b8efcab573d002c80dbe8.tar.gz
misskey-897f7a031d624d8ca37b8efcab573d002c80dbe8.tar.bz2
misskey-897f7a031d624d8ca37b8efcab573d002c80dbe8.zip
wip
Diffstat (limited to 'src/client/app/desktop')
-rw-r--r--src/client/app/desktop/views/components/notifications.vue4
-rw-r--r--src/client/app/desktop/views/components/received-follow-requests-window.vue (renamed from src/client/app/desktop/views/components/follow-requests-window.vue)0
-rw-r--r--src/client/app/desktop/views/components/ui.header.account.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/desktop/views/components/notifications.vue b/src/client/app/desktop/views/components/notifications.vue
index 368655095f..f2247a782c 100644
--- a/src/client/app/desktop/views/components/notifications.vue
+++ b/src/client/app/desktop/views/components/notifications.vue
@@ -50,7 +50,7 @@
</div>
</template>
- <template v-if="notification.type == 'reciveFollowRequest'">
+ <template v-if="notification.type == 'receiveFollowRequest'">
<mk-avatar class="avatar" :user="notification.user"/>
<div class="text">
<p>%fa:user-clock%
@@ -268,7 +268,7 @@ root(isDark)
.text p i
color #53c7ce
- &.reciveFollowRequest
+ &.receiveFollowRequest
.text p i
color #888
diff --git a/src/client/app/desktop/views/components/follow-requests-window.vue b/src/client/app/desktop/views/components/received-follow-requests-window.vue
index fd37c0a6aa..fd37c0a6aa 100644
--- a/src/client/app/desktop/views/components/follow-requests-window.vue
+++ b/src/client/app/desktop/views/components/received-follow-requests-window.vue
diff --git a/src/client/app/desktop/views/components/ui.header.account.vue b/src/client/app/desktop/views/components/ui.header.account.vue
index 8c2da6596a..4e0fc1cf1a 100644
--- a/src/client/app/desktop/views/components/ui.header.account.vue
+++ b/src/client/app/desktop/views/components/ui.header.account.vue
@@ -49,7 +49,7 @@
<script lang="ts">
import Vue from 'vue';
import MkUserListsWindow from './user-lists-window.vue';
-import MkFollowRequestsWindow from './follow-requests-window.vue';
+import MkFollowRequestsWindow from './received-follow-requests-window.vue';
import MkSettingsWindow from './settings-window.vue';
import MkDriveWindow from './drive-window.vue';
import contains from '../../../common/scripts/contains';