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
957c6592
Commit
957c6592
authored
Jan 28, 2019
by
Dominik Prokop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle undefined graph and table results
parent
05edb3e5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
public/app/features/explore/GraphContainer.tsx
+5
-0
public/app/features/explore/TableContainer.tsx
+5
-0
No files found.
public/app/features/explore/GraphContainer.tsx
View file @
957c6592
...
...
@@ -30,6 +30,11 @@ export class GraphContainer extends PureComponent<GraphContainerProps> {
render
()
{
const
{
exploreId
,
graphResult
,
loading
,
onChangeTime
,
showingGraph
,
showingTable
,
range
,
split
}
=
this
.
props
;
const
graphHeight
=
showingGraph
&&
showingTable
?
'200px'
:
'400px'
;
if
(
!
graphResult
)
{
return
null
;
}
return
(
<
Panel
label=
"Graph"
isOpen=
{
showingGraph
}
loading=
{
loading
}
onToggle=
{
this
.
onClickGraphButton
}
>
<
Graph
...
...
public/app/features/explore/TableContainer.tsx
View file @
957c6592
...
...
@@ -26,6 +26,11 @@ export class TableContainer extends PureComponent<TableContainerProps> {
render
()
{
const
{
loading
,
onClickCell
,
showingTable
,
tableResult
}
=
this
.
props
;
if
(
!
tableResult
)
{
return
null
;
}
return
(
<
Panel
label=
"Table"
loading=
{
loading
}
isOpen=
{
showingTable
}
onToggle=
{
this
.
onClickTableButton
}
>
<
Table
data=
{
tableResult
}
loading=
{
loading
}
onClickCell=
{
onClickCell
}
/>
...
...
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