mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
[REF] component: remove updateProps
it is actually now a private method
This commit is contained in:
@@ -1485,8 +1485,8 @@ describe("async rendering", () => {
|
||||
|
||||
class ChildA extends Widget {
|
||||
inlineTemplate = `<span>a<t t-esc="props.val"/></span>`;
|
||||
updateProps(props, forceUpdate, fiber): Promise<void> {
|
||||
return defA.then(() => super.updateProps(props, forceUpdate, fiber));
|
||||
_updateProps(props, forceUpdate, fiber): Promise<void> {
|
||||
return defA.then(() => super._updateProps(props, forceUpdate, fiber));
|
||||
}
|
||||
}
|
||||
class ChildB extends Widget {
|
||||
|
||||
Reference in New Issue
Block a user