-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Port #4888 to v10 #4890
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
Port #4888 to v10 #4890
Conversation
} | ||
} | ||
|
||
return oldDom; | ||
} else if (parentVNode._dom != oldDom) { | ||
if (oldDom && parentVNode.type && !parentDom.contains(oldDom)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The ported code diff also happens to contain one more improvement that replaces the parentDom.contains(...)
check with !oldDom.parentNode
. Original PR: #4666. Please let me know if you don't want to include it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be fine I think, test suite passes anyhow. And thanks for tracking down the blame there, saves me from doing it myself
📊 Tachometer Benchmark ResultsSummaryA summary of the benchmark results will show here once they finish. ResultsThe full results of your benchmarks will show here once they finish. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Sorry about the CI, evidently it's not quite configured properly on this branch.
Thanks @rschristian! Will update the |
Published @vasylenkoval Thank you again for all of this work, you're a hero! |
Description
This PR ports commits from #4888 to the v10 branch.