Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
255901ca
Commit
255901ca
authored
Jan 07, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(graph panel): fixed bug in typeahead when adding series style override, fixes #3554
parent
aca9d396
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
CHANGELOG.md
+3
-0
public/app/core/directives/dropdown_typeahead.js
+1
-2
No files found.
CHANGELOG.md
View file @
255901ca
...
...
@@ -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
...
...
public/app/core/directives/dropdown_typeahead.js
View file @
255901ca
...
...
@@ -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
;
}
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment