-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML label not in the good place in embed mode since v13 #989
Comments
Thanks for this. It seems to break one of our test cases. We need to understand why this breaks your output in #940 in the first place, maybe the container affects the output. Can you provide a standalone example that reproduces this problem? |
I have created an example of bug on PS : You can found other examples of flowcharting with drawio at Thx again for draw.io |
You're right ! thx for your investigation |
Hi,
I already wrote an issue about this at
#940
Without news, i had investigate and i found a solution.
In mxSvgCanvas2D.js function updateTextNodes
i replaced :
'display: flex; align-items: unsafe ' +
By
'display: flex; align-self: unsafe ' +
Before with align-items

After with align-self :

BR,
Arnaud
The text was updated successfully, but these errors were encountered: