Skip to content
Snippets Groups Projects
Commit ddebdad3 authored by Francesco Ballerini's avatar Francesco Ballerini Committed by Antoine Vandevenne (anv)
Browse files

[FIX] website_sale: typo in products view


This commit fixes a simple SyntaxError on `website_ribbon_id` options attribute on view `product_template_form_view` of `website_sale` module.
It doesn't seem to cause issues on module update, but it's a common syntax mistake which should be fixed.

closes odoo/odoo#125901

X-original-commit: 82425f57
Signed-off-by: default avatarAntoine Vandevenne (anv) <anv@odoo.com>
parent 6d9fc71e
Branches
Tags
No related merge requests found
......@@ -150,7 +150,7 @@
<field name="website_id" options="{'no_create': True}" groups="website.group_multi_website"/>
<field name="website_sequence" groups="base.group_no_one"/>
<field name="public_categ_ids" widget="many2many_tags" string="Categories"/>
<field name="website_ribbon_id" groups="base.group_no_one" options="{'no_quick_create': True'}"/>
<field name="website_ribbon_id" groups="base.group_no_one" options="{'no_quick_create': True}"/>
</group>
<group name="product_template_images" string="Extra Product Media" attrs="{'invisible': [('sale_ok','=',False)]}">
<field name="product_template_image_ids" class="o_website_sale_image_list" context="{'default_name': name}" mode="kanban" add-label="Add a Media" nolabel="1"/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment