Skip to content
Snippets Groups Projects
Commit cd4fc778 authored by Samuel Degueldre's avatar Samuel Degueldre
Browse files

[FIX] mail: fix crash when clicking a reply that is not yet loaded


closes odoo/odoo#78030

X-original-commit: 913c33c3
Signed-off-by: default avatarSébastien Theys (seb) <seb@odoo.com>
Signed-off-by: default avatarSamuel Degueldre <sdegueldre@users.noreply.github.com>
parent 07adca3c
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,9 @@ function factory(dependencies) {
message: replace(parentMessage),
threadView: replace(threadView),
});
if (!parentMessageView) {
return;
}
threadView.addComponentHint('highlight-reply', parentMessageView);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment