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 d0e90ae commit 277d8eaCopy full SHA for 277d8ea
app/api/window.ts
@@ -43,8 +43,8 @@ if (typeof window !== 'undefined') {
43
query: async (q: string) => {
44
const result = await api.methods.timeseriesQuery({ body: { query: q } })
45
const data = handleResult(result)
46
+ logHeading(data.length + ' timeseries returned')
47
for (const table of data) {
- logHeading(data.length + ' timeseries returned')
48
for (const ts of Object.values(table.timeseries)) {
49
const fields = Object.entries(ts.fields)
50
.map(([k, v]) => `${k}: ${v.value}`)
0 commit comments