Skip to content
Snippets Groups Projects
Commit 67b9a566 authored by stevereis's avatar stevereis
Browse files

Fix should provide array on algo param value

parent 85d9cc83
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ export const transformToExperiment = jsonata(`
algorithm.parameters[$not(name in $params)].({
"name": name,
"label": label,
"value": value
"value": $split(value, ',')
})
}
}
......
......@@ -86,9 +86,9 @@ type GroupsResult {
type HeatMapResult {
name: String!
xAxis: ChartAxis
yAxis: ChartAxis
matrix: [[Float!]!]!
xAxis: ChartAxis!
yAxis: ChartAxis!
}
type LineChartResult {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment