From 2ba9d4e7ff5b6518fc13d46d46cc4e49f29c3832 Mon Sep 17 00:00:00 2001 From: rahulramesha Date: Mon, 26 Aug 2024 14:37:34 +0530 Subject: [PATCH] fix to use the correct created by while checking if the current user is the creator of the inbox issue --- web/core/components/inbox/content/inbox-issue-header.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/core/components/inbox/content/inbox-issue-header.tsx b/web/core/components/inbox/content/inbox-issue-header.tsx index f62de095c4d..6384b4e9b8b 100644 --- a/web/core/components/inbox/content/inbox-issue-header.tsx +++ b/web/core/components/inbox/content/inbox-issue-header.tsx @@ -85,8 +85,7 @@ export const InboxIssueActionsHeader: FC = observer((p const canMarkAsDeclined = isAllowed && (inboxIssue?.status === 0 || inboxIssue?.status === -2); // can delete only if admin or is creator of the issue const canDelete = - (!!currentProjectRole && currentProjectRole >= EUserProjectRoles.ADMIN) || - inboxIssue?.created_by === currentUser?.id; + (!!currentProjectRole && currentProjectRole >= EUserProjectRoles.ADMIN) || issue?.created_by === currentUser?.id; const isAcceptedOrDeclined = inboxIssue?.status ? [-1, 1, 2].includes(inboxIssue.status) : undefined; // days left for snooze const numberOfDaysLeft = findHowManyDaysLeft(inboxIssue?.snoozed_till);