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.vue | |
| parent | 9c4092dbd5887b4476955076fdcbe621718a8d03 (diff) | |
Migrate StillImage to UserAvatar for avatars
Diffstat (limited to 'src/components/user_card/user_card.vue')
| -rw-r--r-- | src/components/user_card/user_card.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index cf69606d..4f512974 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -1,7 +1,7 @@ <template> <div class="card"> <a href="#"> - <StillImage @click.prevent="toggleUserExpanded" class="avatar" :src="user.profile_image_url"/> + <UserAvatar @click.prevent="toggleUserExpanded" :src="user.profile_image_url"/> </a> <div class="usercard" v-if="userExpanded"> <user-card-content :user="user" :switcher="false"></user-card-content> |
