aboutsummaryrefslogtreecommitdiff
path: root/src/components/still-image/still-image.vue
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-02-04 04:17:11 +0000
committerShpuld Shpludson <shp@cock.li>2019-02-04 04:17:11 +0000
commitd6ee6e8394a86cadc1419f014dc5e77569c62c75 (patch)
tree86172bb8f27a7f3a4835e1db431c979bdf088a52 /src/components/still-image/still-image.vue
parent7115584882f4fde67d248fa61611dbe579a41b9f (diff)
parente7f43d6bc3c97f5a98df3e3d6defabe896e7cdce (diff)
Merge branch '275-avatar-placeholder' into 'develop'
Support avatar placeholder Closes #275 See merge request pleroma/pleroma-fe!511
Diffstat (limited to 'src/components/still-image/still-image.vue')
-rw-r--r--src/components/still-image/still-image.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/still-image/still-image.vue b/src/components/still-image/still-image.vue
index 1dcb7ce6..29c59e42 100644
--- a/src/components/still-image/still-image.vue
+++ b/src/components/still-image/still-image.vue
@@ -1,7 +1,7 @@
<template>
<div class='still-image' :class='{ animated: animated }' >
<canvas ref="canvas" v-if="animated"></canvas>
- <img ref="src" :src="src" :referrerpolicy="referrerpolicy" v-on:load="onLoad"/>
+ <img ref="src" :src="src" :referrerpolicy="referrerpolicy" v-on:load="onLoad" @error="imageLoadError"/>
</div>
</template>