aboutsummaryrefslogtreecommitdiff
path: root/src/components/who_to_follow/who_to_follow.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/who_to_follow/who_to_follow.vue')
-rw-r--r--src/components/who_to_follow/who_to_follow.vue8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/components/who_to_follow/who_to_follow.vue b/src/components/who_to_follow/who_to_follow.vue
index 1630f5ac..35c99c1b 100644
--- a/src/components/who_to_follow/who_to_follow.vue
+++ b/src/components/who_to_follow/who_to_follow.vue
@@ -1,10 +1,14 @@
<template>
<div class="panel panel-default">
<div class="panel-heading">
- {{$t('who_to_follow.who_to_follow')}}
+ {{ $t('who_to_follow.who_to_follow') }}
</div>
<div class="panel-body">
- <FollowCard v-for="user in users" :key="user.id" :user="user"/>
+ <FollowCard
+ v-for="user in users"
+ :key="user.id"
+ :user="user"
+ />
</div>
</div>
</template>