diff --git a/front/src/Row.js b/front/src/Row.js
index 0f8e6edcf266b34c6f549f6bc284eb3a4b493776..3239a5cede5ea82ff586427c95ea9a404d9c7bb3 100644
--- a/front/src/Row.js
+++ b/front/src/Row.js
@@ -12,7 +12,9 @@ const PureTextRow = ({ row }) => (
 
 const PureImageRow = ({ row }) => {
   const style =
-    'heightFactor' in row ? { height: `calc(${row.heightFactor} * var(--rowHeight))` } : {};
+    'heightFactor' in row
+      ? { height: `calc(${row.heightFactor} * var(--rowHeight))` }
+      : { height: 'calc(2 * var(--rowHeight))' };
   return (
     <div className="bloc image-bloc" style={style}>
       <img src={row.image} alt="" />