fix user avatar fallback logic

This commit is contained in:
taehoon 2019-08-28 14:02:04 -04:00
parent 8c465719cc
commit 9476fbba5a
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ const UserAvatar = {
},
computed: {
imgSrc () {
return this.showPlaceholder ? '/images/avi.png' : this.src
return this.showPlaceholder ? '/images/avi.png' : this.user.profile_image_url_original
}
},
methods: {