Revert "recover border between basic-user-card using list component"

This reverts commit 1d56d486f1f679e793e710969ad54cce5fdb1ebc.

# Conflicts:
#	src/components/follow_requests/follow_requests.vue
#	src/components/user_search/user_search.vue
#	src/components/who_to_follow/who_to_follow.vue
This commit is contained in:
taehoon 2019-04-16 23:29:11 -04:00
parent bd88a481c6
commit de945e5f88
6 changed files with 6 additions and 24 deletions

View file

@ -1,10 +1,8 @@
import FollowRequestCard from '../follow_request_card/follow_request_card.vue'
import List from '../list/list.vue'
const FollowRequests = {
components: {
FollowRequestCard,
List
FollowRequestCard
},
computed: {
requests () {

View file

@ -4,11 +4,7 @@
{{$t('nav.friend_requests')}}
</div>
<div class="panel-body">
<List :items="requests">
<template slot="item" slot-scope="{item}">
<FollowRequestCard :user="item" />
</template>
</List>
<FollowRequestCard v-for="request in requests" :key="request.id" :user="request" class="list-item"/>
</div>
</div>
</template>