3
0
Fork 0

Fixed JS assuming "o_form_sheet_bg" is always found

17.0
Jose Montero 2023-07-25 01:38:31 +02:00 committed by trisdoan
parent a71c019fec
commit 69348c8f63
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ patch(FormCompiler.prototype, "web_chatter_position", {
chatterContainerHookXml.setAttribute("t-if", false);
} else {
const formSheetBgXml = res.querySelector(".o_form_sheet_bg");
if (!formSheetBgXml) {
return res;
}
const sheetBgChatterContainerHookXml =
chatterContainerHookXml.cloneNode(true);
sheetBgChatterContainerHookXml.classList.add("o-isInFormSheetBg");