From 14656d2879f55508d5e6d69914e1175f5d40fc2e Mon Sep 17 00:00:00 2001 From: sangeethailango Date: Thu, 20 Nov 2025 18:16:12 +0530 Subject: [PATCH] fix: update updated_at --- apps/api/plane/db/models/issue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/plane/db/models/issue.py b/apps/api/plane/db/models/issue.py index 2e9b084d3d..83376c00d2 100644 --- a/apps/api/plane/db/models/issue.py +++ b/apps/api/plane/db/models/issue.py @@ -520,7 +520,7 @@ class IssueComment(ChangeTrackerMixin, ProjectBaseModel): # Update description only if comment fields changed if changed_fields and self.description_id: Description.objects.filter(pk=self.description_id).update( - **changed_fields, updated_by_id=self.updated_by_id + **changed_fields, updated_by_id=self.updated_by_id, updated_at=self.updated_at ) class Meta: