We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Some upcoming chrome change has caused html labels to stop rendering correctly. For example this page no longer works on chrome dev:
https://dagrejs.github.io/project/dagre-d3/latest/demo/interactive-demo.html
I believe the issue is with how chrome is rendering the foreignObject node when it is initially created.
Removing this line seems to fix the issue:
dagre-d3/lib/label/add-html-label.js
Line 8 in 10e37c7
If you can't remove the line, it appears you can force chrome to re-render it like this
document.querySelectorAll('foreignObject').forEach(x=>{ x.parentElement.style.display='none'; setTimeout(()=>{x.parentElement.style.display=''},1); })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some upcoming chrome change has caused html labels to stop rendering correctly. For example this page no longer works on chrome dev:
https://dagrejs.github.io/project/dagre-d3/latest/demo/interactive-demo.html
I believe the issue is with how chrome is rendering the foreignObject node when it is initially created.
Removing this line seems to fix the issue:
dagre-d3/lib/label/add-html-label.js
Line 8 in 10e37c7
If you can't remove the line, it appears you can force chrome to re-render it like this
The text was updated successfully, but these errors were encountered: