We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b77633 commit bf9b836Copy full SHA for bf9b836
1 file changed
src/components/Card.astro
@@ -69,7 +69,7 @@ const dateString = formatDate(startDate) + " - " + formatDate(finishDate);
69
<p class="card-date">{dateString}</p>
70
71
<div class="card-icon-container">
72
- {icons.map((icon: string) => <Image src={iconMap.get(icon) ?? blank} alt={icon} loading="lazy" />)}
+ {icons.map((icon: string) => <Image src={iconMap.get(icon) ?? blank} alt={`${icon}'s icon`} loading="lazy" />)}
73
</div>
74
<p class="card-text">{description}</p>
75
0 commit comments