cr changes
[arvados-workbench2.git] / src / views / run-process-panel / inputs / string-input.tsx
index 7f02e1d34338f819d248b2f0ea5472fe9fb1987f..f6b50a7c47dd5bb417e75e503520f0be6ee691d9 100644 (file)
@@ -29,4 +29,8 @@ const StringInputComponent = (props: GenericInputProps) =>
         {...props} />;
 
 const Input = (props: GenericInputProps) =>
-    <MaterialInput fullWidth {...props.input} error={props.meta.touched && !!props.meta.error} />;
\ No newline at end of file
+    <MaterialInput
+        fullWidth
+        error={props.meta.touched && !!props.meta.error}
+        disabled={props.commandInput.disabled}
+        {...props.input} />;
\ No newline at end of file