diff --git a/src/renderer/component/common/form-components/form-field.jsx b/src/renderer/component/common/form-components/form-field.jsx index 52c1003dc..e2e1960d0 100644 --- a/src/renderer/component/common/form-components/form-field.jsx +++ b/src/renderer/component/common/form-components/form-field.jsx @@ -24,6 +24,9 @@ type Props = { stretch?: boolean, affixClass?: string, // class applied to prefix/postfix label firstInList?: boolean, // at the top of a list, no padding top + inputProps: { + disabled?: boolean, + }, }; export class FormField extends React.PureComponent { @@ -76,8 +79,8 @@ export class FormField extends React.PureComponent { ); } else if (type === 'textarea') { input =