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 f1cf97f commit 054571dCopy full SHA for 054571d
src/DataSource.ts
@@ -39,8 +39,8 @@ export class DataSource extends DataSourceApi<MyQuery> {
39
40
async query(options: DataQueryRequest<MyQuery>): Promise<DataQueryResponse> {
41
const { range } = options;
42
- const from = range!.from.unix();
43
- const to = range!.to.unix();
+ const from = range.from.unix();
+ const to = range.to.unix();
44
45
const promises = options.targets.map((target) => {
46
const query = defaults(target, defaultQuery);
0 commit comments