Skip to content

Commit

Permalink
[18.0][FIX] connector_base_product: remove wrong invisible attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
yankinmax committed Feb 4, 2025
1 parent 456a467 commit 2e4bc8a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions connector_base_product/views/product_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
<field name="inherit_id" ref="product.product_normal_form_view" />
<field name="arch" type="xml">
<xpath expr="/form/sheet/notebook" position="inside">
<!-- change the invisible attribute to 0 when used
in submodules -->
<page string="Connectors" name="connector" invisible="True" />
<page string="Connectors" name="connector" />
</xpath>
</field>
</record>
Expand All @@ -24,9 +22,7 @@
<field name="inherit_id" ref="product.product_template_form_view" />
<field name="arch" type="xml">
<xpath expr="/form/sheet/notebook" position="inside">
<!-- change the invisible attribute to 0 when used
in submodules -->
<page string="Connectors" name="connector" invisible="True" />
<page string="Connectors" name="connector" />
</xpath>
</field>
</record>
Expand Down

0 comments on commit 2e4bc8a

Please sign in to comment.