mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix: datasource search was not working properly
This commit is contained in:
@@ -19,6 +19,7 @@ export class DataSourcesCtrl {
|
|||||||
onQueryUpdated() {
|
onQueryUpdated() {
|
||||||
let regex = new RegExp(this.searchQuery, 'ig');
|
let regex = new RegExp(this.searchQuery, 'ig');
|
||||||
this.datasources = _.filter(this.unfiltered, item => {
|
this.datasources = _.filter(this.unfiltered, item => {
|
||||||
|
regex.lastIndex = 0;
|
||||||
return regex.test(item.name) || regex.test(item.type);
|
return regex.test(item.name) || regex.test(item.type);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user