Migrate StillImage to UserAvatar for avatars

This commit is contained in:
taehoon 2019-02-02 14:23:16 -05:00
parent 9c4092dbd5
commit d607e4195a
6 changed files with 7 additions and 9 deletions

View file

@ -1,5 +1,5 @@
import UserCardContent from '../user_card_content/user_card_content.vue'
import StillImage from '../still-image/still-image.vue'
import UserAvatar from '../user_avatar/user_avatar.vue'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
const UserCard = {
@ -15,7 +15,7 @@ const UserCard = {
},
components: {
UserCardContent,
StillImage
UserAvatar
},
computed: {
currentUser () { return this.$store.state.users.currentUser }