File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ export async function POST(req: NextRequest) {
8484Type: ${ type }
8585From: ${ email }
8686User ID: ${ userId }
87- Workspace ID: ${ workspaceId }
87+ Workspace ID: ${ workspaceId ?? 'N/A' }
8888Workflow ID: ${ workflowId ?? 'N/A' }
8989Browser: ${ userAgent ?? 'N/A' }
9090
Original file line number Diff line number Diff line change @@ -616,6 +616,7 @@ export function deepMergeInputMapping(
616616
617617 for ( const [ key , userValue ] of Object . entries ( parsedUserMapping ) ) {
618618 // Only override LLM value if user provided a non-empty value
619+ // Note: Using strict inequality (===) so 0 and false are correctly preserved
619620 if ( userValue !== undefined && userValue !== null && userValue !== '' ) {
620621 merged [ key ] = userValue
621622 }
You can’t perform that action at this time.
0 commit comments