X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/785a62a8934dc439cbd201d9011775ccbcbb2c24..691afce5b8573b3a89592b506b3a37d615d60bc1:/src/views/run-process-panel/inputs/int-input.tsx diff --git a/src/views/run-process-panel/inputs/int-input.tsx b/src/views/run-process-panel/inputs/int-input.tsx index 32ebeb75..3273f354 100644 --- a/src/views/run-process-panel/inputs/int-input.tsx +++ b/src/views/run-process-panel/inputs/int-input.tsx @@ -22,9 +22,9 @@ export const IntInput = ({ input }: IntInputProps) => format={format} validate={getValidation(input)} />; -const parse = (value: any) => parseInt(value, 10); +export const parse = (value: any) => value === '' ? '' : parseInt(value, 10); -const format = (value: any) => isNaN(value) ? '' : JSON.stringify(value); +export const format = (value: any) => isNaN(value) ? '' : JSON.stringify(value); const getValidation = memoize( (input: IntCommandInputParameter) => ([