mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-21 00:58:29 -06:00
fix: gs readability issue for multiple file uploads (#2127)
This commit is contained in:
committed by
GitHub
parent
7f68b4f800
commit
a027d1ef3d
@@ -61,7 +61,7 @@ async function extractResponses(data: TPipelineInput, questionIds: string[]): Pr
|
||||
const responseValue = data.response.data[questionId];
|
||||
|
||||
if (responseValue !== undefined) {
|
||||
responses.push(Array.isArray(responseValue) ? responseValue.join(",") : String(responseValue));
|
||||
responses.push(Array.isArray(responseValue) ? responseValue.join("\n") : String(responseValue));
|
||||
} else {
|
||||
responses.push("");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user