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
a9c0f66c
Commit
a9c0f66c
authored
Dec 05, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(influxdb): Fix for Ad-Hoc Filters variable & changing dashboards, fixes #6821
parent
ab07667b
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
0 deletions
+3
-0
CHANGELOG.md
+1
-0
public/app/features/dashboard/unsavedChangesSrv.js
+1
-0
public/app/features/templating/templateSrv.js
+1
-0
No files found.
CHANGELOG.md
View file @
a9c0f66c
...
...
@@ -24,6 +24,7 @@
*
**Singlestat**
: Support repeated template variables in prefix/postfix
[
#6595
](
https://github.com/grafana/grafana/issues/6595
)
*
**Templating**
: Don't persist variable options with refresh option
[
#6586
](
https://github.com/grafana/grafana/issues/6586
)
*
**Alerting**
: Add ability to have OR conditions (and mixing AND & OR)
[
#6579
](
https://github.com/grafana/grafana/issues/6579
)
*
**InfluxDB**
: Fix for Ad-Hoc Filters variable & changing dashboards
[
#6821
](
https://github.com/grafana/grafana/issues/6821
)
# 4.0-beta1 (2016-11-09)
...
...
public/app/features/dashboard/unsavedChangesSrv.js
View file @
a9c0f66c
...
...
@@ -110,6 +110,7 @@ function(angular, _) {
_
.
each
(
dash
.
templating
.
list
,
function
(
value
)
{
value
.
current
=
null
;
value
.
options
=
null
;
value
.
filters
=
null
;
});
};
...
...
public/app/features/templating/templateSrv.js
View file @
a9c0f66c
...
...
@@ -25,6 +25,7 @@ function (angular, _, kbn) {
this
.
updateTemplateData
=
function
()
{
this
.
_index
=
{};
this
.
_filters
=
{};
this
.
_adhocVariables
=
{};
for
(
var
i
=
0
;
i
<
this
.
variables
.
length
;
i
++
)
{
var
variable
=
this
.
variables
[
i
];
...
...
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