Explorar o código

fix(graph panel): fixed bug in typeahead when adding series style override, fixes #3554

Torkel Ödegaard %!s(int64=10) %!d(string=hai) anos
pai
achega
255901ca7c
Modificáronse 2 ficheiros con 4 adicións e 2 borrados
  1. 3 0
      CHANGELOG.md
  2. 1 2
      public/app/core/directives/dropdown_typeahead.js

+ 3 - 0
CHANGELOG.md

@@ -3,6 +3,9 @@
 ### New Features
 * **Elasticsearch**: Support for derivative unit option, closes [#3512](https://github.com/grafana/grafana/issues/3512)
 
+### Bug fixes
+* **Graph Panel**: Fixed typehead when adding series style override, closes [#3554](https://github.com/grafana/grafana/issues/3554)
+
 # 2.6.0 (2015-12-14)
 
 ### New Features

+ 1 - 2
public/app/core/directives/dropdown_typeahead.js

@@ -74,11 +74,10 @@ function (_, $, coreModule) {
           updater: function (value) {
             var result = {};
             _.each($scope.menuItems, function(menuItem) {
-              result.$item = menuItem;
-
               _.each(menuItem.submenu, function(submenuItem) {
                 if (value === (menuItem.text + ' ' + submenuItem.text)) {
                   result.$subItem = submenuItem;
+                  result.$item = menuItem;
                 }
               });
             });