Skip to content

Commit 192b5e6

Browse files
committed
[debug]
1 parent ab368c8 commit 192b5e6

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
@@ -63,7 +63,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
6363
fields: response.data.result.labels.map((id: string, i: number) => {
6464
const node = response.data.summary.nodes.find((n: any) => n.nd === id);
6565
return {
66-
name: node?.name || id,
66+
name: `Node: ${node?.label || id}`,
6767
type: i === 0 ? FieldType.time : FieldType.number,
6868
};
6969
}),

0 commit comments

Comments
 (0)