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 8d26032 commit 562b3ffCopy full SHA for 562b3ff
src/timeMachine/utils/rawFluxDataTable.ts
@@ -72,6 +72,9 @@ export const parseFromFluxResults = (
72
) {
73
columnData = new Date(columnData).toISOString()
74
}
75
+ if (typeof columnData === 'string') {
76
+ columnData = `"${columnData}"`
77
+ }
78
if (column === 'result') {
79
// setting the column data for result as an empty string since the default
80
// value given is set in the default headers:
0 commit comments