fix: gs readability issue for multiple file uploads (#2127)

This commit is contained in:
Dhruwang Jariwala
2024-02-27 01:37:42 +05:30
committed by GitHub
parent 7f68b4f800
commit a027d1ef3d

View File

@@ -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("");
}