diff --git a/front/src/Row.js b/front/src/Row.js index 3239a5cede5ea82ff586427c95ea9a404d9c7bb3..5bdc9c69c4b89416f3045c8319acf3becc82bf7d 100644 --- a/front/src/Row.js +++ b/front/src/Row.js @@ -17,14 +17,14 @@ const PureImageRow = ({ row }) => { : { height: 'calc(2 * var(--rowHeight))' }; return ( <div className="bloc image-bloc" style={style}> - <img src={row.image} alt="" /> + <img src={encodeURI(row.image)} alt="" /> </div> ); }; const TextAndImageRow = ({ row }) => ( <div className="bloc image-text-bloc"> - <img className="row-icon" src={row.image} alt="" /> + <img className="row-icon" src={encodeURI(row.image)} alt="" /> <div className="text-section">{row.text.map(element => <TextElement element={element} />)}</div> </div> );