You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
start new project from E-Commerce Starter template with Codux
install dependencies
observe Intro and 5 - Cart boards on home screen:
open these boards, observe how they should look
Technical details
This issue is caused by change in this PR: #1131
The thing is that previously we were applying board environmentProps settings to a board container (board-canvas), and width and height were set explicitly
Now, board container (board-canvas) has no width and height set. Because mentioned boards root element has position: absolute, this root element is not affecting its parent html element (board-canvas). Thus, board container has size of 0x0:
Because of that, Codux logic to measure board size and fit it into thumbnail is failing.
I think, we should explicitly set width and height for board-canvas element
The text was updated successfully, but these errors were encountered:
Steps:
E-Commerce Starter
template with CoduxIntro
and5 - Cart
boards on home screen:Technical details
This issue is caused by change in this PR: #1131
The thing is that previously we were applying board
environmentProps
settings to a board container (board-canvas
), and width and height were set explicitlyNow, board container (
board-canvas
) has no width and height set. Because mentioned boards root element hasposition: absolute
, this root element is not affecting its parent html element (board-canvas
). Thus, board container has size of 0x0:Because of that, Codux logic to measure board size and fit it into thumbnail is failing.
I think, we should explicitly set width and height for
board-canvas
elementThe text was updated successfully, but these errors were encountered: