mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
41f1262eb7
Previously, if a fiber was delayed because one of its ancestors was rendering, and that fiber was not a root fiber, it would be rendered after all its ancestors had finished rendering even if one of those ancestor renderings cancelled it. This commit fixes that by simply checking that a delayed fiber is still its component node's current fiber before rendering it.