Skip to content

Commit

Permalink
Bugfix/Fix export lead email (FlowiseAI#2717)
Browse files Browse the repository at this point in the history
fix export lead email
  • Loading branch information
HenryHengZJ authored Jun 24, 2024
1 parent 109b036 commit 1367f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/src/ui-component/dialog/ViewMessagesDialog.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
source: chatmsg.chatType === 'INTERNAL' ? 'UI' : 'API/Embed',
sessionId: chatmsg.sessionId ?? null,
memoryType: chatmsg.memoryType ?? null,
email: leadEmail ?? null,
email: chatmsg.leadEmail ?? null,
messages: [msg]
}
} else if (Object.prototype.hasOwnProperty.call(obj, chatPK)) {
Expand Down

0 comments on commit 1367f09

Please sign in to comment.