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

wip: experiment integration front end

fix param type not matching after rebase
parent 17b8df6c
No related branches found
No related tags found
No related merge requests found
......@@ -68,10 +68,7 @@ const algoParamInputToData = (param: AlgorithmParamInput) => {
return {
name: param.id,
label: param.id,
value:
param.type === ParamType.NUMBER
? Number(param.value)
: param.value.join(','),
value: param.value.join(','),
};
};
......
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