InputDataSource: Fixed issue with config editor (#19818)

This commit is contained in:
Torkel Ödegaard
2019-10-16 12:58:49 +02:00
committed by GitHub
parent 945b815fe0
commit b37444f3ea
3 changed files with 13 additions and 1 deletions

View File

@@ -4,5 +4,5 @@ export function dataFrameToCSV(dto?: DataFrameDTO[]) {
if (!dto || !dto.length) {
return '';
}
return toCSV(dto.map(v => toDataFrame(dto)));
return toCSV(dto.map(v => toDataFrame(v)));
}