Skip to content

Commit

Permalink
fix image blured background
Browse files Browse the repository at this point in the history
  • Loading branch information
DantSu committed Mar 27, 2024
1 parent 75005a0 commit 03e22d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App/Components/Table/TableCell.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function TableCell ({data, selected, onSelect, onPlay, onInfo, onOptimizeAudio,
{data.cellSubtitle && <p className={styles.cellSubtitle} title={data.cellSubtitle}><span className={styles.cellEllipsis}>{data.cellSubtitle}</span></p>}
<div className={styles.imageContainer}>
<img src={data.image} className={styles.cellImage} alt=""/>
<div className={styles.cellImageBackground} style={{backgroundImage:'url("' + data.image + '")'}}/>
<div className={styles.cellImageBackground} style={{backgroundImage:'url("' + data.image.replaceAll('\\', '\\\\') + '")'}}/>
{data.cellLabelIcon && <p className={styles.cellImageLabel} title={data.cellLabelIconText}>{data.cellLabelIcon}</p>}
</div>
{
Expand Down

0 comments on commit 03e22d1

Please sign in to comment.