Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Dec 19, 2023
1 parent 19fb07b commit 5eb9684
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ee/frontend/mobile-replay/transformers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ function makeImageElement(wireframe: wireframeImage, children: serializedNodeWit
tagName: 'img',
attributes: {
src: src,
width: wireframe.width || '100vw',
height: wireframe.height || '100vh',
width: wireframe.width,
height: wireframe.height,
style: makeStylesString(wireframe),
},
id: wireframe.id,
Expand Down

0 comments on commit 5eb9684

Please sign in to comment.