Skip to content

Commit

Permalink
fix: remove field
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément committed Sep 3, 2024
1 parent d2fbc55 commit f492fea
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ class CommunicationRevision(models.Model):
body_html = fields.Html(
compute="_compute_body_html", inverse="_inverse_body_html", sanitize=False
)
raw_template_edit_mode = fields.Boolean()
simplified_text = fields.Html(sanitize=False)
user_id = fields.Many2one(
"res.users",
Expand Down Expand Up @@ -573,7 +572,6 @@ def onchange_compare_lang(self):

def reload_text(self):
self.keyword_ids.unlink()
self.raw_template_edit_mode = False
if self.body_html:
self.with_context(no_update=True).simplified_text = self._simplify_text()

Expand Down

0 comments on commit f492fea

Please sign in to comment.