Last analyzed 4727955 11 hours ago
Default analysis branch is
Currently analyzing run
Prefer meaningful alternative text JS-0737
Anti-pattern
5 months ago6 months old
img elements must have an alt prop, either with meaningful text, or an empty string for decorative images
47                key={`${term}-${trackIndex}`}
48                className="track"
49                href={track.href}>
50                <img51                  className="cover"52                  src={track.image ?? null}53                  width="48"54                  height="48" />55                <div className="details">
56                  <Text 
57                    className="name"
img elements must have an alt prop, either with meaningful text, or an empty string for decorative images
 75            paddingLeft: 4,
 76            paddingTop: 8,
 77          }}>
 78          <img 79            id="cover" 80            height="48" 81            src={ track.image ?? null } 82            width="48" /> 83
 84          <div
 85            style={{
img elements must have an alt prop, either with meaningful text, or an empty string for decorative images
51                  key={`chess-game-${ gameIndex }=row-${ rowIndex }-col-${ colIndex }`}
52                  className={`col ${(rowIndex + colIndex) % 2 === (game.isWhite ? 0 : 1) ? 'light' : ''} ${game.noGame ? 'empty' : ''}`}>
53                  {col && 
54                    <img src={ pieceImages[`${col === col.toUpperCase() ? 'white' : 'black' }-${ col.toLowerCase() }`]}></img>55                  }
56                </div>
57                ))}