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
494ac90c
Commit
494ac90c
authored
Aug 13, 2019
by
Šimon Podlipský
Committed by
Torkel Ödegaard
Aug 13, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
QueryData: Handle that response data must be array (#18504)
Fixes #18499
parent
3ccc10f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
public/app/features/dashboard/state/PanelQueryState.ts
+7
-4
No files found.
public/app/features/dashboard/state/PanelQueryState.ts
View file @
494ac90c
// Libraries
import
isString
from
'lodash/isString'
;
import
isEqual
from
'lodash/isEqual'
;
import
{
isArray
,
isEqual
,
isString
}
from
'lodash'
;
// Utils & Services
import
{
getBackendSrv
}
from
'app/core/services/backend_srv'
;
...
...
@@ -123,6 +122,10 @@ export class PanelQueryState {
return
ds
.
query
(
this
.
request
,
this
.
dataStreamObserver
)
.
then
(
resp
=>
{
if
(
!
isArray
(
resp
.
data
))
{
throw
new
Error
(
`Expected response data to be array, got
${
typeof
resp
.
data
}
.`
);
}
this
.
request
.
endTime
=
Date
.
now
();
this
.
executor
=
null
;
...
...
@@ -349,8 +352,8 @@ function translateToLegacyData(data: DataQueryResponseData) {
*
* This is also used by PanelChrome for snapshot support
*/
export
function
getProcessedDataFrames
(
results
?:
any
[]):
DataFrame
[]
{
if
(
!
results
)
{
export
function
getProcessedDataFrames
(
results
?:
DataQueryResponseData
[]):
DataFrame
[]
{
if
(
!
isArray
(
results
)
)
{
return
[];
}
...
...
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