aboutsummaryrefslogtreecommitdiff
path: root/src/components/account_actions/account_actions.vue
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2020-05-08 09:14:26 +0000
committerShpuld Shpludson <shp@cock.li>2020-05-08 09:14:26 +0000
commit47c56ffa1c8509ed323602f54be34328e9105419 (patch)
treec439d51bcc3a5a972fc763ab96ade4cee9bed7a1 /src/components/account_actions/account_actions.vue
parent921eedfd84007da72619a553ba8d074076559e7a (diff)
parent1186205583715b187bb4e503dc35e8c0644cfc7e (diff)
Merge branch 'feat/relationship-refactor' into 'develop'
Refactor: make relationships separate from users Closes #819 See merge request pleroma/pleroma-fe!1091
Diffstat (limited to 'src/components/account_actions/account_actions.vue')
-rw-r--r--src/components/account_actions/account_actions.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue
index 483783cf..744b77d5 100644
--- a/src/components/account_actions/account_actions.vue
+++ b/src/components/account_actions/account_actions.vue
@@ -9,16 +9,16 @@
class="account-tools-popover"
>
<div class="dropdown-menu">
- <template v-if="user.following">
+ <template v-if="relationship.following">
<button
- v-if="user.showing_reblogs"
+ v-if="relationship.showing_reblogs"
class="btn btn-default dropdown-item"
@click="hideRepeats"
>
{{ $t('user_card.hide_repeats') }}
</button>
<button
- v-if="!user.showing_reblogs"
+ v-if="!relationship.showing_reblogs"
class="btn btn-default dropdown-item"
@click="showRepeats"
>
@@ -30,7 +30,7 @@
/>
</template>
<button
- v-if="user.statusnet_blocking"
+ v-if="relationship.blocking"
class="btn btn-default btn-block dropdown-item"
@click="unblockUser"
>