mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Merge pull request #946 from MaxyMoos/Issue-939
[FIX] web_many2many_tags_multiselection: Missing return
This commit is contained in:
@@ -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',
|
||||||
|
|||||||
@@ -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 || {}),
|
||||||
|
|||||||
Reference in New Issue
Block a user