Arbore/arbore#85 add mail_quoted_reply_icon

This commit is contained in:
Luis 2026-02-14 17:34:18 +01:00
parent 67554c95f5
commit a1f73dabe7
3 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,33 @@
/** @odoo-module **/
import {registerPatch} from "@mail/model/model_core";
registerPatch({
name: "MessageActionView",
fields: {
classNames: {
compute() {
let classNames = this._super() || "";
if (
this.messageAction.messageActionListOwner ===
this.messageAction.replyMessageAction
) {
// Replace the fa-reply icon added by mail_quoted_reply with fa-envelope
classNames = classNames.replace("fa-reply", "fa-envelope");
}
return classNames;
},
},
title: {
compute() {
if (
this.messageAction.messageActionListOwner ===
this.messageAction.replyMessageAction
) {
return this.env._t("Reply by Email");
}
return this._super();
},
},
},
});