Skip to content

Commit 7784000

Browse files
committed
Add width and height attribute for img tag
1 parent 7149170 commit 7784000

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

frontend/src/components/overlay/Dccon.vue

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
<template>
22
<div class="dccon">
3-
<img class="image" :src="dccon.path" :alt="dccon.keywords[0]" @click.prevent="clicked" @mouseover="hovered" loading="lazy">
3+
<img
4+
class="image"
5+
loading="lazy"
6+
width="32px"
7+
height="32px"
8+
:src="dccon.path"
9+
:alt="dccon.keywords[0]"
10+
@click.prevent="clicked"
11+
@mouseover="hovered">
412
</div>
513
</template>
614

0 commit comments

Comments
 (0)