mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
4f61d9f1e0
The expression parser properly format an empty string into an empty
string. But then, this empty string was injected in the props object of
a component, and the compiled code looked like this:
let props5 = { val: };
So, in this case, we simply put undefined, since there are no props
value.
closes #587