summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJessica <jessica@Absolventas-MacBook-Pro.local>2018-09-25 16:56:43 +0200
committerJessica <jessica@Absolventas-MacBook-Pro.local>2018-09-25 16:56:43 +0200
commit5752fead4ce77b841d64fe42816ff7bcbf780729 (patch)
tree4224f620d74363a5052966ee5613608b1ba734fc /src
parent897ee3d8a02d0909cb1aa70946fe77a3c11efe22 (diff)
corrected naming of avatarUrl in if statement in initial
Diffstat (limited to 'src')
-rw-r--r--src/components/ContentList/ContentListItem.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ContentList/ContentListItem.vue b/src/components/ContentList/ContentListItem.vue
index d6095523..2cf2d3e2 100644
--- a/src/components/ContentList/ContentListItem.vue
+++ b/src/components/ContentList/ContentListItem.vue
@@ -50,7 +50,7 @@ export default {
return 'url(' + this.contact.url + '?photo' + ')'
},
initial() {
- if (this.avatar) {
+ if (this.avatarUrl) {
return ''
} else {
return this.contact.displayName.charAt(0)