forked from AkkomaGang/akkoma-fe
Change to hide User migrates tab when allow following move
This commit is contained in:
parent
9bbf10b55d
commit
9b7497a659
2 changed files with 2 additions and 0 deletions
|
@ -10,6 +10,7 @@ const tabModeDict = {
|
|||
const Interactions = {
|
||||
data () {
|
||||
return {
|
||||
allowFollowingMove: this.$store.state.users.currentUser.allow_following_move,
|
||||
filterMode: tabModeDict['mentions']
|
||||
}
|
||||
},
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
:label="$t('interactions.follows')"
|
||||
/>
|
||||
<span
|
||||
v-if="!allowFollowingMove"
|
||||
key="moves"
|
||||
:label="$t('interactions.moves')"
|
||||
/>
|
||||
|
|
Loading…
Reference in a new issue