mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: missing alt text property errors in console
This commit is contained in:
parent
b10a4fabb0
commit
f609de25f9
5 changed files with 5 additions and 5 deletions
|
@ -15,7 +15,7 @@ export const CollectionLink = (props: any) => {
|
||||||
<Image
|
<Image
|
||||||
src={props.image}
|
src={props.image}
|
||||||
fill={true}
|
fill={true}
|
||||||
alt={props.title}
|
alt={props.title || ""}
|
||||||
className="-z-[1] object-cover"
|
className="-z-[1] object-cover"
|
||||||
sizes="
|
sizes="
|
||||||
(max-width: 768px) 300px,
|
(max-width: 768px) 300px,
|
||||||
|
|
|
@ -36,7 +36,7 @@ export const ReleaseLink169 = (props: any) => {
|
||||||
<Image
|
<Image
|
||||||
src={props.image}
|
src={props.image}
|
||||||
fill={true}
|
fill={true}
|
||||||
alt={props.title}
|
alt={props.title || ""}
|
||||||
className="-z-[1] object-cover"
|
className="-z-[1] object-cover"
|
||||||
sizes="
|
sizes="
|
||||||
(max-width: 768px) 300px,
|
(max-width: 768px) 300px,
|
||||||
|
|
|
@ -33,7 +33,7 @@ export const ReleaseLink169Poster = (props: any) => {
|
||||||
src={props.image}
|
src={props.image}
|
||||||
height={250}
|
height={250}
|
||||||
width={250}
|
width={250}
|
||||||
alt={props.title}
|
alt={props.title || ""}
|
||||||
className="object-cover aspect-[9/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
className="object-cover aspect-[9/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -43,7 +43,7 @@ export const ReleaseLink169Related = (props: any) => {
|
||||||
src={props.image}
|
src={props.image}
|
||||||
height={250}
|
height={250}
|
||||||
width={250}
|
width={250}
|
||||||
alt={props.title}
|
alt={props.title || ""}
|
||||||
className="object-cover aspect-[9/16] lg:aspect-[12/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
className="object-cover aspect-[9/16] lg:aspect-[12/16] h-auto w-24 md:w-32 lg:w-48 rounded-md"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -17,7 +17,7 @@ export const UserSection = (props: { sectionTitle?: string; content: any }) => {
|
||||||
return (
|
return (
|
||||||
<Link href={`/profile/${user.id}`} key={user.id} className="w-full max-w-[234px] h-full max-h-[234px] aspect-square flex-shrink-0">
|
<Link href={`/profile/${user.id}`} key={user.id} className="w-full max-w-[234px] h-full max-h-[234px] aspect-square flex-shrink-0">
|
||||||
<Card className="items-center justify-center w-full h-full">
|
<Card className="items-center justify-center w-full h-full">
|
||||||
<Avatar img={user.avatar} alt={user.login} size="lg" rounded={true} />
|
<Avatar img={user.avatar} alt={user.login || ""} size="lg" rounded={true} />
|
||||||
<h5 className="mb-1 text-xl font-medium text-gray-900 dark:text-white">
|
<h5 className="mb-1 text-xl font-medium text-gray-900 dark:text-white">
|
||||||
{user.login}
|
{user.login}
|
||||||
</h5>
|
</h5>
|
||||||
|
|
Loading…
Add table
Reference in a new issue