Skip to content

Commit

Permalink
[FIX] No formatting on colors
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspot authored May 26, 2024
1 parent 7d2ee89 commit c014e14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mail_show_follower/models/mail_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ def remove_p(markup_txt):
{rc}{msg_warn}
</div>
""".format(
msg_font_color=remove_p(msg_font_color),
msg_back_color=remove_p(msg_back_color),
msg_font_color=msg_font_color or "#000000",
msg_back_color=msg_back_color or "#EBEBEB",
msg_sent_to=remove_p(msg_sent_to),
partner_message=Markup.escape(partner_message),
rc=msg_warn.striptags() and "<br/>" or "",
Expand Down

0 comments on commit c014e14

Please sign in to comment.