Merge pull request #946 from MaxyMoos/Issue-939

[FIX] web_many2many_tags_multiselection: Missing return
pull/779/merge
Pedro M. Baeza 2018-06-05 09:36:09 +02:00 committed by GitHub
commit a29fc7ad31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
{ {
'name': 'Tags multiple selection', 'name': 'Tags multiple selection',
'version': '11.0.1.0.0', 'version': '11.0.1.0.1',
'author': 'Akretion, Odoo Community Association (OCA), Jamin Shah', 'author': 'Akretion, Odoo Community Association (OCA), Jamin Shah',
'depends': [ 'depends': [
'web', 'web',

View File

@ -19,7 +19,7 @@ odoo.define('web_widget_many2many_tags_multi_selection.multiple_tags', function
} }
} }
new dialogs.SelectCreateDialog(self, _.extend({}, self.nodeOptions, { return new dialogs.SelectCreateDialog(self, _.extend({}, self.nodeOptions, {
res_model: self.field.relation, res_model: self.field.relation,
domain: domain, domain: domain,
context: _.extend({}, self.record.getContext(self.recordParams), context || {}), context: _.extend({}, self.record.getContext(self.recordParams), context || {}),