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 192b5e6 commit aee64c7Copy full SHA for aee64c7
src/datasource.ts
@@ -63,7 +63,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
63
fields: response.data.result.labels.map((id: string, i: number) => {
64
const node = response.data.summary.nodes.find((n: any) => n.nd === id);
65
return {
66
- name: `Node: ${node?.label || id}`,
+ name: JSON.stringify(node), //`Node: ${node?.label || id}`,
67
type: i === 0 ? FieldType.time : FieldType.number,
68
};
69
}),
0 commit comments