Merge PR #2513 into 16.0

Signed-off-by ivantodorovich
pull/2514/head
OCA-git-bot 2023-05-23 14:30:38 +00:00
commit 51eef98135
1 changed files with 10 additions and 6 deletions

View File

@ -15,13 +15,17 @@ patch(Dropdown.prototype, "dropdown", {
onWindowClicked(ev) { onWindowClicked(ev) {
// This patch is created to prevent the closing of the Filter menu // This patch is created to prevent the closing of the Filter menu
// when a selection is made in the RecordPicker // when a selection is made in the RecordPicker
if ($(ev.target.closest("ul.dropdown-menu")).attr("id") !== undefined) {
const dropdown = $("body > ul.dropdown-menu");
for (let i = 0; i < dropdown.length; i++) {
if ( if (
$(ev.target.closest("ul.dropdown-menu")).attr("id") !== undefined &&
$(ev.target.closest("ul.dropdown-menu")).attr("id") === $(ev.target.closest("ul.dropdown-menu")).attr("id") ===
$("body > ul.dropdown-menu").attr("id") $(dropdown[i]).attr("id")
) { ) {
return; return;
} }
}
}
this._super(ev); this._super(ev);
}, },
}); });