Merge pull request #803 from Safelite/SSR-1435-add-empty-alt-tag

SSR-1435 add empty alt tag for decorative image.
This commit is contained in:
bmauger 2024-07-25 11:53:05 -04:00 committed by GitHub
commit 9c264b6d49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,8 @@
<template>
<div class="footerImage">
<img :src="footerImageURL" />
<img
:src="footerImageURL"
alt="" />
</div>
</template>
<script>
@ -11,8 +13,8 @@ export default {
data() {
return {
widget: {
footer: 'SiteFooterWidget',
},
footer: 'SiteFooterWidget'
}
};
},
computed: {
@ -21,8 +23,8 @@ export default {
this.widget.footer,
widgetFields.FOOTER_WIDGET.FOOTER_IMAGE_URL
);
},
},
}
}
};
</script>