FIX: csv import with header=false

This commit is contained in:
Gabriel Amorim
2023-02-22 15:13:36 -03:00
parent 706d0ccfa0
commit 93ccf506fb
@@ -379,7 +379,7 @@ export class PipelinesController {
const file_format_params = {
...(sep && { sep }),
...(encoding && { encoding }),
...(header && { header }),
...(header !== undefined ? { header } : {}),
};
const source_prefix = `${user.customer_name}/${file_name}`;