Skip to content

Commit

Permalink
Merge pull request #52684 from NJ-2020/fix/51424
Browse files Browse the repository at this point in the history
fix invitation message is converted to uni message
  • Loading branch information
yuwenmemon authored Dec 17, 2024
2 parents 0ef6238 + d715931 commit d86024e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libs/actions/Policy/Member.ts
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,9 @@ function addMembersToWorkspace(invitedEmailsToAccountIDs: InvitedEmailsToAccount
employees: JSON.stringify(logins.map((login) => ({email: login}))),
...(optimisticAnnounceChat.announceChatReportID ? {announceChatReportID: optimisticAnnounceChat.announceChatReportID} : {}),
...(optimisticAnnounceChat.announceChatReportActionID ? {announceCreatedReportActionID: optimisticAnnounceChat.announceChatReportActionID} : {}),
welcomeNote: Parser.replace(welcomeNote),
welcomeNote: Parser.replace(welcomeNote, {
shouldEscapeText: false,
}),
policyID,
};
if (!isEmptyObject(membersChats.reportCreationData)) {
Expand Down

0 comments on commit d86024e

Please sign in to comment.