Merged in feature/IO-2325-Ticket-Create-By (pull request #942)

IO-2325 Add in Created by from Action menu
This commit is contained in:
Allan Carr
2023-08-18 16:02:56 +00:00

View File

@@ -243,7 +243,12 @@ export function JobsDetailHeaderActions({
setTimeTicketContext({
actions: {},
context: { jobId: job.id },
context: {
jobId: job.id,
created_by: currentUser.displayName
? currentUser.email.concat(" | ", currentUser.displayName)
: currentUser.email,
},
});
}}
>