(cq) add alt attribute on logo

This commit is contained in:
Simon Vieille 2022-08-21 13:55:29 +02:00 committed by Gitea
parent 6347403ed7
commit ca08a26e1b

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>