mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
b5c3422b4d
There was some code in qweb to make sure that we support setting class
and t-att-class on the same html element:
<div class="some class" t-att-class="{b: true}">...</div>
But the code did not work in the other direction:
<div t-att-class="{b: true}" class="some class">...</div>
With this commit, we just add the missing if statement
closes #664