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 ed32658 commit d3db978Copy full SHA for d3db978
src/core/rendering/console-output.writer.ts
@@ -121,7 +121,7 @@ export class ConsoleOutputWriter implements IOutputWriter {
121
// eslint-disable-next-line security/detect-object-injection
122
const values = headers.map((header) => {
123
const value = Object.prototype.hasOwnProperty.call(item, header)
124
- ? (item as Record<string, unknown>)[header as string]
+ ? (item as Record<string, unknown>)[header]
125
: null;
126
// Escape quotes and wrap in quotes if contains comma
127
const stringValue = String(value ?? '');
0 commit comments