17782: Disabling typechecking for some common Field component usage.
[arvados-workbench2.git] / src / views / run-process-panel / run-process-basic-form.tsx
index 3608c1b0bc977b252314390b60f7cd3ed7788871..13d882ba3ca874ea63df48735c2e6504a29f95d6 100644 (file)
@@ -23,7 +23,7 @@ export const RunProcessBasicForm =
                 <Grid item xs={12} md={6}>
                     <Field
                         name='name'
-                        component={TextField}
+                        component={TextField as any}
                         label="Enter a new name for run process"
                         required
                         validate={PROCESS_NAME_VALIDATION} />
@@ -31,7 +31,7 @@ export const RunProcessBasicForm =
                 <Grid item xs={12} md={6}>
                     <Field
                         name='description'
-                        component={TextField}
+                        component={TextField as any}
                         label="Enter a description for run process" />
                 </Grid>
             </Grid>