mirror of
https://github.com/odoo/runbot.git
synced 2025-03-15 15:35:46 +07:00
[FIX] runbot_merge: attrs not supported in 17.0
Basically the next part of aa1df22657
which requires replacing @attrs by the corresponding attribute &
python predicates: new attrs were added to 15.0 since.
This commit is contained in:
parent
1f83007675
commit
31c13ca9a0
@ -122,18 +122,12 @@
|
||||
<field name="active"/>
|
||||
</group>
|
||||
</group>
|
||||
<group attrs="{'invisible': [
|
||||
('commit', '=', False),
|
||||
('patch', '!=', False),
|
||||
]}">
|
||||
<group invisible="patch and not commit">
|
||||
<group colspan="4">
|
||||
<field name="commit"/>
|
||||
</group>
|
||||
</group>
|
||||
<group attrs="{'invisible': [
|
||||
('patch', '=', False),
|
||||
('commit', '!=', False),
|
||||
]}">
|
||||
<group invisible="commit and not patch">
|
||||
<group colspan="4">
|
||||
<field name="format" colspan="4"/>
|
||||
<field name="patch" widget="ace"/>
|
||||
|
Loading…
Reference in New Issue
Block a user