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
014b70de
Commit
014b70de
authored
Sep 10, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(graph): fixed showing rendering error in inspector, fixes #5995
parent
7aab4a4a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
public/app/features/panel/panel_ctrl.ts
+1
-1
public/app/partials/inspector.html
+3
-3
public/app/plugins/panel/graph/graph.js
+1
-1
No files found.
public/app/features/panel/panel_ctrl.ts
View file @
014b70de
...
...
@@ -242,7 +242,7 @@ export class PanelCtrl {
var
modalScope
=
this
.
$scope
.
$new
();
modalScope
.
panel
=
this
.
panel
;
modalScope
.
dashboard
=
this
.
dashboard
;
modalScope
.
inspector
=
angular
.
copy
(
this
.
inspector
);
modalScope
.
inspector
=
$
.
extend
(
true
,
{},
this
.
inspector
);
this
.
publishAppEvent
(
'show-modal'
,
{
src
:
'public/app/partials/inspector.html'
,
...
...
public/app/partials/inspector.html
View file @
014b70de
...
...
@@ -68,9 +68,9 @@
</pre>
<label>
Stack trace:
</label>
<pre>
{{stack_trace}}
</pre>
<pre>
{{stack_trace}}
</pre>
</div>
...
...
public/app/plugins/panel/graph/graph.js
View file @
014b70de
...
...
@@ -265,7 +265,7 @@ function (angular, $, moment, _, kbn, GraphTooltip, thresholdManExports) {
console
.
log
(
'flotcharts error'
,
e
);
ctrl
.
error
=
e
.
message
||
"Render Error"
;
ctrl
.
renderError
=
true
;
ctrl
.
inspector
=
{
error
:
ctrl
.
error
};
ctrl
.
inspector
=
{
error
:
e
};
}
if
(
incrementRenderCounter
)
{
...
...
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