Add missing alt text for arrows in autoscroll

This commit is contained in:
Kuba Orlik 2024-04-25 15:25:56 +02:00
parent 8591eaed03
commit 1cc9e2d5ab

View File

@ -109,6 +109,7 @@ export class AutoscrollingImages extends Component<typeof component_arguments> {
<img <img
class="autoscrolling-images__img-arrow-left" class="autoscrolling-images__img-arrow-left"
src={arrow.url} src={arrow.url}
alt="←"
/> />
</label> </label>
<label <label
@ -119,7 +120,7 @@ export class AutoscrollingImages extends Component<typeof component_arguments> {
}`} }`}
class="autoscrolling-images__arrow" class="autoscrolling-images__arrow"
> >
<img src={arrow.url} /> <img src={arrow.url} alt="→" />
</label> </label>
</div> </div>
))} ))}