17595: Fixed selection based on hash
[arvados-workbench2.git] / src / views / run-process-panel / inputs / int-array-input.tsx
index d1c0273acfcce7f8d3e9d3576b4b117f79666b86..c625f95592dc0a682ccb1f2c14bd94a78007715e 100644 (file)
@@ -8,7 +8,6 @@ import { Field } from 'redux-form';
 import { ERROR_MESSAGE } from '~/validators/require';
 import { GenericInputProps, GenericInput } from '~/views/run-process-panel/inputs/generic-input';
 import { ChipsInput } from '~/components/chips-input/chips-input';
-import { identity } from 'lodash';
 import { createSelector } from 'reselect';
 import { IntInput } from '~/components/int-input/int-input';
 
@@ -42,15 +41,17 @@ const IntArrayInputComponent = (props: GenericInputProps) =>
 
 class InputComponent extends React.PureComponent<GenericInputProps>{
     render() {
+        const { commandInput, input, meta } = this.props;
         return <ChipsInput
-            deletable
-            orderable
-            value={this.props.input.value}
+            deletable={!commandInput.disabled}
+            orderable={!commandInput.disabled}
+            disabled={commandInput.disabled}
+            values={input.value}
             onChange={this.handleChange}
             createNewValue={value => parseInt(value, 10)}
             inputComponent={IntInput}
             inputProps={{
-                error: this.props.meta.error,
+                error: meta.error,
             }} />;
     }