aboutsummaryrefslogtreecommitdiff
path: root/src/components/user_card/user_card.js
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2018-12-20 22:20:04 +0200
committershpuld <shp@cock.li>2018-12-20 22:20:04 +0200
commit67263cde05cacd6bf2a8941cce4c562ef88977e4 (patch)
treee2c16bcb643d6286752672ec92db73be7e86bb21 /src/components/user_card/user_card.js
parent640a28789222035f8d500b8dd4bfc4c9f0cdd1af (diff)
parent562c68a51c9746650fabfc5c641816396439c791 (diff)
works but hacky
Diffstat (limited to 'src/components/user_card/user_card.js')
-rw-r--r--src/components/user_card/user_card.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.js b/src/components/user_card/user_card.js
index ea893567..f0fff335 100644
--- a/src/components/user_card/user_card.js
+++ b/src/components/user_card/user_card.js
@@ -1,4 +1,5 @@
import UserCardContent from '../user_card_content/user_card_content.vue'
+import StillImage from '../still-image/still-image.vue'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
const UserCard = {
@@ -13,7 +14,8 @@ const UserCard = {
}
},
components: {
- UserCardContent
+ UserCardContent,
+ StillImage
},
computed: {
currentUser () { return this.$store.state.users.currentUser }