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 64fb52d commit 3d8472eCopy full SHA for 3d8472e
scripts/flags/flags.js
@@ -406,7 +406,7 @@ if (argv.csv) {
406
`Flag name, ${FLAG_COLUMNS.join(', ')}`,
407
...Object.keys(table).map(flag => {
408
const row = sorted[flag];
409
- return `${flag}, ${FLAG_COLUMNS.map(flag => row[flag]).join(', ')}`;
+ return `${flag}, ${FLAG_COLUMNS.map(col => row[col]).join(', ')}`;
410
}),
411
];
412
fs.writeFile('./flags.csv', csvRows.join('\n'), function (err) {
0 commit comments