fix(Comment): logic for update notification

This commit is contained in:
barredterra 2025-04-24 13:08:14 +02:00
parent 61b6e566cb
commit 17ae73acad

View file

@ -66,7 +66,7 @@ class Comment(Document):
def on_update(self):
update_comment_in_doc(self)
if self.is_new():
if not self.is_new():
self.notify_change("update")
def on_trash(self):