diff options
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/user_avatar/user_avatar.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/user_avatar/user_avatar.js b/src/components/user_avatar/user_avatar.js index 8afb46c2..e513b993 100644 --- a/src/components/user_avatar/user_avatar.js +++ b/src/components/user_avatar/user_avatar.js @@ -1,5 +1,4 @@ import StillImage from '../still-image/still-image.vue' -import avatarPlaceholderImage from '../../assets/avatar-placeholder.png' const UserAvatar = { props: [ @@ -17,7 +16,7 @@ const UserAvatar = { }, computed: { imgSrc () { - return this.showPlaceholder ? avatarPlaceholderImage : this.src + return this.showPlaceholder ? '/images/avi.png' : this.src } }, methods: { |
