We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0064696 commit f6c8267Copy full SHA for f6c8267
viplab-standalone-frontend-vue/src/components/csv-plots/CsvPlot.vue
@@ -125,7 +125,7 @@ export default {
125
const keys = Object.keys(data[0]);
126
keys.forEach((element) => { obj[element] = []; });
127
// fill the object with the data depending on the keys (column names)
128
- for (let i = 0; i < data.length; i *= 1) {
+ for (let i = 0; i < data.length; i += 1) {
129
const row = data[i];
130
keys.forEach((element) => obj[element].push(row[element]));
131
}
0 commit comments