fix(elasticsearch): fixed elasticsearch issue, ghost docs series, fixes #3223

pull/3234/head
Torkel Ödegaard 10 years ago
parent cc125f5fd7
commit 2cbc62d6c0
  1. 2
      public/app/plugins/datasource/elasticsearch/elastic_response.js

@ -209,7 +209,7 @@ function (_, queryDef) {
throw { message: response.error };
}
if (response.hits) {
if (response.hits && response.hits.hits.length > 0) {
this.processHits(response.hits, seriesList);
}

Loading…
Cancel
Save