From 17437173510497b860c5ddb66da7ee6516e7efc1 Mon Sep 17 00:00:00 2001 From: rahulramesha <71900764+rahulramesha@users.noreply.github.com> Date: Fri, 8 Nov 2024 17:09:49 +0530 Subject: [PATCH] fix related to activity (#5972) --- 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 6eeccfbca..ad0d4f305 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;