mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
Dashboard search fix, only query against title field (Closes #51,Fixes #24)
This commit is contained in:
parent
2e59587c8e
commit
250e354659
@ -385,14 +385,12 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
|
||||
);
|
||||
};
|
||||
|
||||
this.elasticsearch_list = function(query,count) {
|
||||
this.elasticsearch_list = function(query, count) {
|
||||
var request = ejs.Request().indices(config.grafana_index).types('dashboard');
|
||||
var q = null;
|
||||
if(config.elasticsearch_all_disabled==true){
|
||||
q = ('title:' + (query || '*'))
|
||||
}else{
|
||||
q = (query || '*')
|
||||
}
|
||||
// if elasticsearch has disabled _all field we need
|
||||
// need to specifiy field here
|
||||
var q = 'title:' + (query || '*');
|
||||
|
||||
return request.query(
|
||||
ejs.QueryStringQuery(q)
|
||||
).size(count).doSearch(
|
||||
|
Loading…
Reference in New Issue
Block a user