Skip to content
Snippets Groups Projects
Commit 9c8286b8 authored by Sébastien Theys's avatar Sébastien Theys
Browse files

[FIX] mail: correct display of channel name in invite dialog


Some characters were not rendered properly, this commit restores the display
as it was in v13.0.

closes odoo/odoo#67065

Signed-off-by: default avatarAlexandre Kühn (aku) <aku@odoo.com>
parent b92ebf3a
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ const PartnerInviteDialog = Dialog.extend({
this.channelId = channel.id;
this.env = env;
this._super(parent, {
title: _.str.sprintf(this.env._t("Invite people to #%s"), channel.displayName),
title: _.str.sprintf(this.env._t("Invite people to #%s"), owl.utils.escape(channel.displayName)),
size: 'medium',
buttons: [{
text: this.env._t("Invite"),
......
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