Skip to content

Commit ef16f7a

Browse files
committed
Fix type
1 parent 054d25d commit ef16f7a

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
@@ -71,7 +71,7 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
7171

7272
response.data.result.data.forEach((point: any) => {
7373
const [timestamp, ...rest] = point;
74-
frame.appendRow([timestamp, ...rest.map((r: Array<any>) => r[0])]);
74+
frame.appendRow([timestamp, ...rest.map((r: any[]) => r[0])]);
7575
});
7676

7777
return frame;

0 commit comments

Comments
 (0)