(cq) add alt attribute on logo

This commit is contained in:
Simon Vieille 2022-08-21 13:55:29 +02:00
parent 4676243b2e
commit 69e2c0670a
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -17,9 +17,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<template>
<div v-bind:class="classes">
<a v-if="link !== null" v-bind:href="link">
<img v-bind:src="image">
<img v-bind:src="image" alt="Logo">
</a>
<img v-else v-bind:src="image">
<img v-else v-bind:src="image" alt="Logo">
</div>
</template>