aboutsummaryrefslogtreecommitdiff
path: root/src/components/follow_requests
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/follow_requests')
-rw-r--r--src/components/follow_requests/follow_requests.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/follow_requests/follow_requests.vue b/src/components/follow_requests/follow_requests.vue
index 8b1e8f94..d5e45b9d 100644
--- a/src/components/follow_requests/follow_requests.vue
+++ b/src/components/follow_requests/follow_requests.vue
@@ -5,8 +5,8 @@
</div>
<div class="panel-body">
<List :items="requests">
- <template slot="item" slot-scope="p">
- <FollowRequestCard :user="p.item" />
+ <template slot="item" slot-scope="{item}">
+ <FollowRequestCard :user="item" />
</template>
</List>
</div>