mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[FIX] Fixed navigation error after using x2x advanced search
This commit is contained in:
committed by
Pedro M. Baeza
parent
efd1f37161
commit
585d10f5fe
@@ -38,9 +38,11 @@ odoo.define('web_advanced_search_x2x.search_filters', function (require) {
|
|||||||
'value': 'domain', 'text': core._lt('is in selection'),
|
'value': 'domain', 'text': core._lt('is in selection'),
|
||||||
});
|
});
|
||||||
// Avoid hiding filter when using special widgets
|
// Avoid hiding filter when using special widgets
|
||||||
this.events["click"] = function (event) {
|
this.events = $.extend({}, this.events, {
|
||||||
|
click: function (event) {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
}
|
},
|
||||||
|
});
|
||||||
return this._super.apply(this, arguments);
|
return this._super.apply(this, arguments);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user