fix(a11y): Add empty alt-tag
This is for telling a screen reader that this image is purely decorative Signed-off-by: Tim Hårek Andreassen <tim@harek.no>
This commit is contained in:
parent
b66022297f
commit
ce6dcf24f9
|
|
@ -9,7 +9,7 @@ export default function SeriesCard(props: { serie: SearchResult; origin: string
|
|||
<div className="mx-auto h-full w-full space-y-2">
|
||||
<h2 className="text-xl">{props.serie.title}</h2>
|
||||
<p className="text-md">{props.serie.description}</p>
|
||||
<img src={image.uri} width={image.width} />
|
||||
<img src={image.uri} width={image.width} alt="" />
|
||||
<code className="font-mono bg-black text-white select-all p-2">{feedUrl.toString()}</code>
|
||||
<CopyButton text={feedUrl.toString()}>
|
||||
Kopier URL
|
||||
|
|
|
|||
Loading…
Reference in New Issue