Skip to content
Snippets Groups Projects
Commit 8639df55 authored by Nicolas Martinelli's avatar Nicolas Martinelli
Browse files

[FIX] mass_mailing: required field

`popup_content` cannot be required since it is only visible if the
option `group_website_popup_on_exit` is activated.

Fixes #11268
opw-671532
parent c8f751c4
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ class MassMailingList(osv.Model):
_get_contact_nbr, type='integer',
string='Number of Contacts',
),
'popup_content': fields.html("Website Popup Content", translate=True, required=True, sanitize=False),
'popup_content': fields.html("Website Popup Content", translate=True, sanitize=False),
'popup_redirect_url': fields.char("Website Popup Redirect URL"),
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment