I am using Odoo 17 right now, and to update a field value in my version 16 codebase, I used this line:
if (component.props.type === "many2one") { component.props.update([]); }
I discovered that this syntax is no longer valid after migrating to Odoo 17, so if you could kindly advise me on the other way to update field values in Odoo 17?
The props
update
was removed in [REF] web, * : simplify concrete fields API - remove update prop commitExample:
Was changed to: