Browse Source

Fix typo in error message

Mariano Benítez Mulet 8 years ago
parent
commit
ec9db318e3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/plugins/datasource/elasticsearch/elastic_response.ts

+ 1 - 1
public/app/plugins/datasource/elasticsearch/elastic_response.ts

@@ -338,7 +338,7 @@ export class ElasticResponse {
     if (err.root_cause && err.root_cause.length > 0 && err.root_cause[0].reason) {
     if (err.root_cause && err.root_cause.length > 0 && err.root_cause[0].reason) {
       result.message = err.root_cause[0].reason;
       result.message = err.root_cause[0].reason;
     } else {
     } else {
-      result.message = err.reason || 'Unkown elatic error response';
+      result.message = err.reason || 'Unkown elastic error response';
     }
     }
 
 
     if (response.$$config) {
     if (response.$$config) {