Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit 9e106e1

Browse files
committed
fix regex
1 parent 288eb8e commit 9e106e1

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

dist/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
BigQuery datasource plugin provide support for [BigQuery](https://cloud.google.com/bigquery/) as a backend database.
1212

1313
### Quick start
14+
## Coming soon
1415
Install from [grafana.net](https://grafana.net/plugins/doitintl-bigquery-datasource)
1516

1617
OR

dist/module.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33992,7 +33992,7 @@ function () {
3399233992
}
3399333993

3399433994
var range = this.target.timeColumn + ' BETWEEN ' + from + ' AND ' + to;
33995-
return q.replace(/\$__timeFilter\(([\w_]+)\)/g, range);
33995+
return q.replace(/\$__timeFilter\(([\w_.]+)\)/g, range);
3399633996
};
3399733997

3399833998
BigQueryQuery._getInterval = function (q, alias) {

dist/module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bigquery_query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ export default class BigQueryQuery {
335335
}
336336

337337
const range = this.target.timeColumn + ' BETWEEN ' + from + ' AND ' + to;
338-
return q.replace(/\$__timeFilter\(([\w_]+)\)/g, range);
338+
return q.replace(/\$__timeFilter\(([\w_.]+)\)/g, range);
339339
}
340340

341341
static _getInterval(q, alias) {

0 commit comments

Comments
 (0)