diff options
| author | kPherox <admin@mail.kr-kp.com> | 2019-12-11 18:25:52 +0900 |
|---|---|---|
| committer | kPherox <admin@mail.kr-kp.com> | 2019-12-11 18:30:26 +0900 |
| commit | b4acbf5311b5f8db21bc2e32a9e5246425edcec4 (patch) | |
| tree | c0809d99c64d92829191a1e37cb682d0e6925ba8 /src/components/interactions | |
| parent | e8333fff8dc048f5d5d8406c71cb80e95ea1982c (diff) | |
Add user migrates filter to interactions
Diffstat (limited to 'src/components/interactions')
| -rw-r--r-- | src/components/interactions/interactions.js | 3 | ||||
| -rw-r--r-- | src/components/interactions/interactions.vue | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/components/interactions/interactions.js b/src/components/interactions/interactions.js index 1f8a9de9..cc31ff20 100644 --- a/src/components/interactions/interactions.js +++ b/src/components/interactions/interactions.js @@ -3,7 +3,8 @@ import Notifications from '../notifications/notifications.vue' const tabModeDict = { mentions: ['mention'], 'likes+repeats': ['repeat', 'like'], - follows: ['follow'] + follows: ['follow'], + moves: ['move'] } const Interactions = { diff --git a/src/components/interactions/interactions.vue b/src/components/interactions/interactions.vue index 08cee343..a2e252ab 100644 --- a/src/components/interactions/interactions.vue +++ b/src/components/interactions/interactions.vue @@ -21,6 +21,10 @@ key="follows" :label="$t('interactions.follows')" /> + <span + key="moves" + :label="$t('interactions.moves')" + /> </tab-switcher> <Notifications ref="notifications" |
