Skip to content

Commit 77678c7

Browse files
committed
fixup! [DEBUG]
1 parent fa11637 commit 77678c7

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/QueryEditor.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ type Props = QueryEditorProps<DataSource, MyQuery, MyDataSourceOptions>;
1818
const { FormField } = LegacyForms;
1919

2020
const QueryEditor: React.FC<Props> = ({ datasource, query, range, onChange, onRunQuery }) => {
21+
console.log('version 3');
2122
const { baseUrl } = datasource;
2223
const from = range!.from.valueOf();
2324
const to = range!.to.valueOf();

src/datasource.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ export class DataSource extends DataSourceApi<MyQuery, MyDataSourceOptions> {
1717
constructor(instanceSettings: DataSourceInstanceSettings<MyDataSourceOptions>) {
1818
super(instanceSettings);
1919
this.baseUrl = instanceSettings.url!;
20-
console.log('version 3');
2120
}
2221

2322
async query(options: DataQueryRequest<MyQuery>): Promise<DataQueryResponse> {

0 commit comments

Comments
 (0)