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
9fa0a4c9
Commit
9fa0a4c9
authored
Jan 27, 2015
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dashboard: fixed scroll isssue in firefox after dashboard import, Closes #1391
parent
ea5da627
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/app/directives/dashEditLink.js
+2
-1
src/app/features/graphite/datasource.js
+0
-1
No files found.
src/app/directives/dashEditLink.js
View file @
9fa0a4c9
...
...
@@ -48,7 +48,7 @@ function (angular, $) {
if
(
editorScope
)
{
editorScope
.
dismiss
();
}
}
scope
.
onAppEvent
(
"dashboard-loaded
"
,
hideEditorPane
);
scope
.
$on
(
"$destroy
"
,
hideEditorPane
);
scope
.
onAppEvent
(
'hide-dash-editor'
,
hideEditorPane
);
scope
.
onAppEvent
(
'show-dash-editor'
,
function
(
evt
,
payload
)
{
...
...
@@ -65,6 +65,7 @@ function (angular, $) {
editorScope
=
payload
.
scope
?
payload
.
scope
.
$new
()
:
scope
.
$new
();
editorScope
.
dismiss
=
function
()
{
console
.
log
(
'dismiss: '
);
editorScope
.
$destroy
();
elem
.
empty
();
lastEditor
=
null
;
...
...
src/app/features/graphite/datasource.js
View file @
9fa0a4c9
...
...
@@ -158,7 +158,6 @@ function (angular, _, $, config, kbn, moment) {
date
=
date
.
replace
(
'M'
,
'mon'
);
return
date
;
}
date
=
kbn
.
parseDate
(
date
);
}
...
...
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