mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[FIX] component: fiber, don't render a destroyed component
This commit is contained in:
@@ -121,6 +121,9 @@ export class Fiber {
|
||||
|
||||
_render() {
|
||||
const node = this.node;
|
||||
if (node.status > STATUS.MOUNTED) {
|
||||
return;
|
||||
}
|
||||
const root = this.root;
|
||||
if (root) {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user