Skip to content

Commit 8b555cf

Browse files
committed
fixup! Change node name accessor prop
1 parent 491c3cf commit 8b555cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/datasource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
6161
const frame = new MutableDataFrame({
6262
refId,
6363
fields: response.data.result.labels.map((id: string, i: number) => {
64-
const node = response.data.summary.nodes.find((n: any) => n.nd === id);
64+
const node = response.data.summary.nodes.find((n: any) => n.mg === id);
6565
return {
6666
name: node?.nm || id,
6767
type: i === 0 ? FieldType.time : FieldType.number,

0 commit comments

Comments
 (0)