diff --git a/web_ir_actions_act_window_message/static/description/index.html b/web_ir_actions_act_window_message/static/description/index.html index 055573076..166c94392 100644 --- a/web_ir_actions_act_window_message/static/description/index.html +++ b/web_ir_actions_act_window_message/static/description/index.html @@ -397,7 +397,7 @@ ul.auto-toc { # ir.actions.act_window_close 'close_button_title': 'Make this window go away', # Use HTML instead of text - 'is_html_message': True, + 'is_html_message': True, # this is an optional list of buttons to show 'buttons': [ # a button can be any action (also ir.actions.report.xml et al) @@ -406,8 +406,8 @@ ul.auto-toc { 'name': 'All customers', 'res_model': 'res.partner', 'view_mode': 'form', - 'views': [[False, 'list'], [False, 'form']], - 'domain': [('customer', '=', True)], + 'views': [[False, 'list'], [False, 'form']], + 'domain': [('customer', '=', True)], }, # or if type == method, you need to pass a model, a method name and # parameters @@ -419,7 +419,7 @@ ul.auto-toc { # list of arguments to pass positionally 'args': [self.ids], # dictionary of keyword arguments - 'kwargs': {'force': True}, + 'kwargs': {'force': True}, # button style 'classes': 'btn-primary', }