diff options
| author | taehoon <th.dev91@gmail.com> | 2019-02-02 14:23:16 -0500 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-02-02 14:23:52 -0500 |
| commit | d607e4195a114843029e902e09df323096e0dcd6 (patch) | |
| tree | 85a184ad6a58c57b21b13edb535d5af441da8be2 /src/components/user_card/user_card.js | |
| parent | 9c4092dbd5887b4476955076fdcbe621718a8d03 (diff) | |
Migrate StillImage to UserAvatar for avatars
Diffstat (limited to 'src/components/user_card/user_card.js')
| -rw-r--r-- | src/components/user_card/user_card.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_card/user_card.js b/src/components/user_card/user_card.js index 615e6487..ecc36a4d 100644 --- a/src/components/user_card/user_card.js +++ b/src/components/user_card/user_card.js @@ -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 } |
