Skip to content

Commit

Permalink
fix related to activity
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulramesha committed Nov 7, 2024
1 parent eebc327 commit 9c3915d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/ce/components/relations/activity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9c3915d

Please sign in to comment.