From 9c3915d29798b2e20ec6e672f5ba901bfbc3fc70 Mon Sep 17 00:00:00 2001 From: rahulramesha Date: Thu, 7 Nov 2024 17:48:05 +0530 Subject: [PATCH] fix related to activity --- web/ce/components/relations/activity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/ce/components/relations/activity.ts b/web/ce/components/relations/activity.ts index 6eeccfbca49..ad0d4f30521 100644 --- a/web/ce/components/relations/activity.ts +++ b/web/ce/components/relations/activity.ts @@ -13,7 +13,7 @@ export const getRelationActivityContent = (activity: TIssueActivity | undefined) case "duplicate": return activity.old_value === "" ? `marked this issue as duplicate of ` : `removed this issue as a duplicate of `; case "relates_to": - activity.old_value === "" ? `marked that this issue relates to ` : `removed the relation from `; + return activity.old_value === "" ? `marked that this issue relates to ` : `removed the relation from `; } return;