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 5e5fdc1 commit 725e76fCopy full SHA for 725e76f
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.mg === id);
65
return {
66
- name: node?.nm || id,
+ name: id, //node?.nm || id,
67
type: i === 0 ? FieldType.time : FieldType.number,
68
};
69
}),
0 commit comments