attachment: add support for rendering alt text on images

This commit is contained in:
William Pitcock 2018-08-25 00:32:10 +00:00
parent 673f0fca3f
commit 30a6b7be5b
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@
<a href="#" @click.prevent="toggleHidden()">Hide</a>
</div>
<a v-if="type === 'image' && !hidden" class="image-attachment" :href="attachment.url" target="_blank">
<a v-if="type === 'image' && !hidden" class="image-attachment" :href="attachment.url" target="_blank" :title="attachment.description">
<StillImage :class="{'small': isSmall}" referrerpolicy="no-referrer" :mimetype="attachment.mimetype" :src="attachment.large_thumb_url || attachment.url"/>
</a>