SSR-1435 add empty alt tag for decorative image.
This commit is contained in:
parent
034b708e5d
commit
ea9e979d39
1 changed files with 7 additions and 5 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="footerImage">
|
<div class="footerImage">
|
||||||
<img :src="footerImageURL" />
|
<img
|
||||||
|
:src="footerImageURL"
|
||||||
|
alt="" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
@ -11,8 +13,8 @@ export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
widget: {
|
widget: {
|
||||||
footer: 'SiteFooterWidget',
|
footer: 'SiteFooterWidget'
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
|
@ -21,8 +23,8 @@ export default {
|
||||||
this.widget.footer,
|
this.widget.footer,
|
||||||
widgetFields.FOOTER_WIDGET.FOOTER_IMAGE_URL
|
widgetFields.FOOTER_WIDGET.FOOTER_IMAGE_URL
|
||||||
);
|
);
|
||||||
},
|
}
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue