fix related to activity (#5972)

This commit is contained in:
rahulramesha 2024-11-08 17:09:49 +05:30 committed by GitHub
parent acba451803
commit 1743717351
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;