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
c5ff1e45
Commit
c5ff1e45
authored
Dec 05, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v4.0.x'
parents
e1d52902
a9c0f66c
Hide 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 @
c5ff1e45
...
@@ -54,6 +54,7 @@ due to too many connections/file handles on the data source backend. This proble
...
@@ -54,6 +54,7 @@ due to too many connections/file handles on the data source backend. This proble
*
**Singlestat**
: Support repeated template variables in prefix/postfix
[
#6595
](
https://github.com/grafana/grafana/issues/6595
)
*
**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
)
*
**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
)
*
**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)
# 4.0-beta1 (2016-11-09)
...
...
public/app/features/dashboard/unsavedChangesSrv.js
View file @
c5ff1e45
...
@@ -110,6 +110,7 @@ function(angular, _) {
...
@@ -110,6 +110,7 @@ function(angular, _) {
_
.
each
(
dash
.
templating
.
list
,
function
(
value
)
{
_
.
each
(
dash
.
templating
.
list
,
function
(
value
)
{
value
.
current
=
null
;
value
.
current
=
null
;
value
.
options
=
null
;
value
.
options
=
null
;
value
.
filters
=
null
;
});
});
};
};
...
...
public/app/features/templating/templateSrv.js
View file @
c5ff1e45
...
@@ -25,6 +25,7 @@ function (angular, _, kbn) {
...
@@ -25,6 +25,7 @@ function (angular, _, kbn) {
this
.
updateTemplateData
=
function
()
{
this
.
updateTemplateData
=
function
()
{
this
.
_index
=
{};
this
.
_index
=
{};
this
.
_filters
=
{};
this
.
_filters
=
{};
this
.
_adhocVariables
=
{};
for
(
var
i
=
0
;
i
<
this
.
variables
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
this
.
variables
.
length
;
i
++
)
{
var
variable
=
this
.
variables
[
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